diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2013-11-13 12:59:48 -0500 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2013-11-13 12:59:48 -0500 |
commit | 869b1e4a678cc6d78a64ed01682ddf8f8debd781 (patch) | |
tree | f3e9a3955a68cbd90a7fb8d61356306df22fb390 | |
parent | c46c803f8ad4ba80472b280703983ecf8021099e (diff) | |
download | postgresql-869b1e4a678cc6d78a64ed01682ddf8f8debd781.tar.gz postgresql-869b1e4a678cc6d78a64ed01682ddf8f8debd781.zip |
Fix isolation check for MSVC to handle recent changes.
-rw-r--r-- | src/tools/msvc/vcregress.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tools/msvc/vcregress.pl b/src/tools/msvc/vcregress.pl index 89bd31a306c..3b4992f923e 100644 --- a/src/tools/msvc/vcregress.pl +++ b/src/tools/msvc/vcregress.pl @@ -149,7 +149,8 @@ sub ecpgcheck sub isolationcheck { chdir "../isolation"; - copy("../../../$Config/isolationtester/isolationtester.exe", "."); + copy("../../../$Config/isolationtester/isolationtester.exe", + "../../../$Config/pg_isolation_regress"); my @args = ( "../../../$Config/pg_isolation_regress/pg_isolation_regress", "--psqldir=../../../$Config/psql", |