diff options
author | Noah Misch <noah@leadboat.com> | 2014-12-18 01:24:57 -0500 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2014-12-18 01:25:13 -0500 |
commit | e35e76a8f486aa397cd27f7e5104e7f0eedda877 (patch) | |
tree | 22de3c34e460321d69a3fcb9f0a9f4401c3830a7 /src/test | |
parent | 6b87d423dc6188a0fed4331bc5c8e4c9c88263d1 (diff) |
Fix previous commit for TAP test suites in VPATH builds.
Per buildfarm member crake. Back-patch to 9.4, where the TAP suites
were introduced.
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/perl/TestLib.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/perl/TestLib.pm b/src/test/perl/TestLib.pm index 57abdb92bf4..003cd9a2cca 100644 --- a/src/test/perl/TestLib.pm +++ b/src/test/perl/TestLib.pm @@ -74,7 +74,7 @@ sub standard_initdb { my $pgdata = shift; system_or_bail("initdb -D '$pgdata' -A trust -N >/dev/null"); - system_or_bail("$ENV{top_srcdir}/src/test/regress/pg_regress", + system_or_bail("$ENV{top_builddir}/src/test/regress/pg_regress", '--config-auth', $pgdata); } |