mirror of
https://github.com/postgres/postgres.git
synced 2026-02-13 07:43:11 -05:00
Add required psqldir setting for isolation checks.
This commit is contained in:
parent
ec645ef346
commit
df15d11cb5
1 changed files with 5 additions and 3 deletions
|
|
@ -143,9 +143,11 @@ sub isolationcheck
|
|||
chdir "../isolation";
|
||||
copy("../../../$Config/isolation_tester/isolation_tester.exe",".");
|
||||
my @args = (
|
||||
"../../../$Config/pg_isolation_regress/pg_isolation_regress",
|
||||
"--inputdir=.", "--schedule=./isolation_schedule"
|
||||
);
|
||||
"../../../$Config/pg_isolation_regress/pg_isolation_regress",
|
||||
"--psqldir=../../../$Config/psql",
|
||||
"--inputdir=.",
|
||||
"--schedule=./isolation_schedule"
|
||||
);
|
||||
push(@args,$maxconn) if $maxconn;
|
||||
system(@args);
|
||||
my $status = $? >>8;
|
||||
|
|
|
|||
Loading…
Reference in a new issue