diff options
author | Magnus Hagander <magnus@hagander.net> | 2007-04-05 12:10:40 +0000 |
---|---|---|
committer | Magnus Hagander <magnus@hagander.net> | 2007-04-05 12:10:40 +0000 |
commit | 4c4013029632a68e5552ef7391fa2ae0e01e2eb8 (patch) | |
tree | 45cecb25b16ae3f2919d15dfbf77f9746fab17ce /src | |
parent | bd097ccdd425533283b6b6be6a75f40614865a19 (diff) | |
download | postgresql-4c4013029632a68e5552ef7391fa2ae0e01e2eb8.tar.gz postgresql-4c4013029632a68e5552ef7391fa2ae0e01e2eb8.zip |
Make sure list of tests is cleared out before getting the new list
of tests. Per Andrew Dunstan.
Diffstat (limited to 'src')
-rw-r--r-- | src/tools/msvc/vcregress.bat | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/msvc/vcregress.bat b/src/tools/msvc/vcregress.bat index c9159c5e21d..febe7cfe69d 100644 --- a/src/tools/msvc/vcregress.bat +++ b/src/tools/msvc/vcregress.bat @@ -1,5 +1,5 @@ @echo off -REM $PostgreSQL: pgsql/src/tools/msvc/vcregress.bat,v 1.7 2007/04/04 20:53:44 adunstan Exp $ +REM $PostgreSQL: pgsql/src/tools/msvc/vcregress.bat,v 1.8 2007/04/05 12:10:40 mha Exp $ SETLOCAL SET STARTDIR=%CD% @@ -65,6 +65,7 @@ SET PL=%1 IF %PL%==plpython SET PL=plpythonu IF %PL%==tcl SET PL=pltcl +set TESTS= perl ../../tools/msvc/getregress.pl > regress.tmp.bat call regress.tmp.bat del regress.tmp.bat @@ -89,6 +90,7 @@ cd %1 echo ========================================================================== echo Checking %1 +set TESTS= perl ../../src/tools/msvc/getregress.pl > regress.tmp.bat call regress.tmp.bat del regress.tmp.bat |