aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2012-03-02 22:09:10 +0200
committerPeter Eisentraut <peter_e@gmx.net>2012-03-02 22:11:57 +0200
commit8e5f4300fdcadac1bfd72a7d1a0225030226c800 (patch)
tree5898f84270eb1a0b3ee67f8411dcd4321c5c6cdb
parent44634e474fcb9dcd92b16fe3a0fb1d8a91e69353 (diff)
downloadpostgresql-8e5f4300fdcadac1bfd72a7d1a0225030226c800.tar.gz
postgresql-8e5f4300fdcadac1bfd72a7d1a0225030226c800.zip
Re-add "make check" target in src/test/isolation/Makefile
This effectively reverts 7886cc73ad12fb9b5a729b6c8152f11a309f5d65, which was done under the impression that isolationtester needs libpq, which it no longer does (and never really did).
-rw-r--r--src/test/isolation/Makefile9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/test/isolation/Makefile b/src/test/isolation/Makefile
index 0278ecb21fd..74baed52f0a 100644
--- a/src/test/isolation/Makefile
+++ b/src/test/isolation/Makefile
@@ -70,10 +70,5 @@ maintainer-clean: distclean
installcheck: all
./pg_isolation_regress --psqldir='$(PSQLDIR)' --inputdir=$(srcdir) --schedule=$(srcdir)/isolation_schedule
-# We can't support "make check" because isolationtester requires libpq, and
-# in fact (on typical platforms using shared libraries) requires libpq to
-# already be installed. You could run "make install" and then run a check
-# using a temp installation, but there seems little point in that.
-check:
- @echo "'make check' is not supported."
- @echo "Install PostgreSQL, then 'make installcheck' instead."
+check: all
+ ./pg_isolation_regress --temp-install=./tmp_check --inputdir=$(srcdir) --top-builddir=$(top_builddir) --schedule=$(srcdir)/isolation_schedule