aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2011-02-10 19:47:57 -0300
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2011-02-10 19:50:43 -0300
commit61cf7bcdf76a2a32d2400a116c8da48d5fd4d3a2 (patch)
treef4fe3d26c05048684f7e89438144ba5bc9bfdfd5
parent01467d3e4f51fe304c0160c9895484ad696d1e87 (diff)
downloadpostgresql-61cf7bcdf76a2a32d2400a116c8da48d5fd4d3a2.tar.gz
postgresql-61cf7bcdf76a2a32d2400a116c8da48d5fd4d3a2.zip
Fix isolation tester Makefile so that it runs in a VPATH build
-rw-r--r--src/test/isolation/Makefile4
-rw-r--r--src/test/isolation/README2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/test/isolation/Makefile b/src/test/isolation/Makefile
index ae04f6cc1a2..82ce248a07e 100644
--- a/src/test/isolation/Makefile
+++ b/src/test/isolation/Makefile
@@ -68,7 +68,7 @@ maintainer-clean: distclean
rm -f specparse.c specscanner.c
installcheck: all
- ./pg_isolation_regress --schedule=$(srcdir)/isolation_schedule
+ ./pg_isolation_regress --inputdir=$(srcdir) --schedule=$(srcdir)/isolation_schedule
check: all
- ./pg_isolation_regress --temp-install=./tmp_check --top-builddir=$(top_builddir) --schedule=$(srcdir)/isolation_schedule
+ ./pg_isolation_regress --temp-install=./tmp_check --inputdir=$(srcdir) --top-builddir=$(top_builddir) --schedule=$(srcdir)/isolation_schedule
diff --git a/src/test/isolation/README b/src/test/isolation/README
index f6984b0beec..ee94081f09a 100644
--- a/src/test/isolation/README
+++ b/src/test/isolation/README
@@ -26,7 +26,7 @@ Test specification
==================
Each isolation test is defined by a specification file, stored in the specs
-subdirectory. A test specification consists of five parts, in this order:
+subdirectory. A test specification consists of four parts, in this order:
setup { <SQL> }