Commit a717e5c7 authored by Peter Eisentraut's avatar Peter Eisentraut

Fix vpath build in libpq_pipeline test

The path needs to be set to refer to the build directory, not the
current directory, because that's actually the source directory at
that point.

fix for 6abc8c25
parent 6abc8c25
......@@ -8,14 +8,13 @@ use Config;
use PostgresNode;
use TestLib;
use Test::More;
use Cwd;
my $node = get_new_node('main');
$node->init;
$node->start;
my $numrows = 700;
$ENV{PATH} = "$ENV{PATH}:" . getcwd();
$ENV{PATH} = "$ENV{TESTDIR}:$ENV{PATH}";
my ($out, $err) = run_command([ 'libpq_pipeline', 'tests' ]);
die "oops: $err" unless $err eq '';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment