mirror of
https://github.com/postgres/postgres.git
synced 2025-05-09 18:21:05 +03:00
Add required psqldir setting for isolation checks.
This commit is contained in:
parent
ec645ef346
commit
df15d11cb5
@ -143,9 +143,11 @@ sub isolationcheck
|
|||||||
chdir "../isolation";
|
chdir "../isolation";
|
||||||
copy("../../../$Config/isolation_tester/isolation_tester.exe",".");
|
copy("../../../$Config/isolation_tester/isolation_tester.exe",".");
|
||||||
my @args = (
|
my @args = (
|
||||||
"../../../$Config/pg_isolation_regress/pg_isolation_regress",
|
"../../../$Config/pg_isolation_regress/pg_isolation_regress",
|
||||||
"--inputdir=.", "--schedule=./isolation_schedule"
|
"--psqldir=../../../$Config/psql",
|
||||||
);
|
"--inputdir=.",
|
||||||
|
"--schedule=./isolation_schedule"
|
||||||
|
);
|
||||||
push(@args,$maxconn) if $maxconn;
|
push(@args,$maxconn) if $maxconn;
|
||||||
system(@args);
|
system(@args);
|
||||||
my $status = $? >>8;
|
my $status = $? >>8;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user