summaryrefslogtreecommitdiff
path: root/tests/version_tests
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-04-25 23:38:31 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-04-25 23:38:31 +0000
commit55a334d87966c5d2eabec4724258042cab10e3a3 (patch)
tree26bf372de14293e3d8ea07ddb5f286a82fd7a8fc /tests/version_tests
parent6a71e04262680a434eb017021bef8c0a1982aeb4 (diff)
downloadATCD-55a334d87966c5d2eabec4724258042cab10e3a3.tar.gz
Fixed it to work with 4nt and now only tries to test the configurations
that are present
Diffstat (limited to 'tests/version_tests')
-rwxr-xr-xtests/version_tests/run_all_tests.bat43
1 files changed, 35 insertions, 8 deletions
diff --git a/tests/version_tests/run_all_tests.bat b/tests/version_tests/run_all_tests.bat
index f37597d5912..fb403fd3718 100755
--- a/tests/version_tests/run_all_tests.bat
+++ b/tests/version_tests/run_all_tests.bat
@@ -1,24 +1,51 @@
+@echo off
+
+:dd
+if not exist "DLL Debug" goto dr
cd "DLL Debug"
-call ..\..\run_tests.bat %*
+call ..\..\run_tests.bat %1 %2 %3 %4 %5 %6 %7 %8 %9
cd ..
+
+:dr
+if not exist "DLL Release" goto dud
cd "DLL Release"
-call ..\..\run_tests.bat %*
+call ..\..\run_tests.bat %1 %2 %3 %4 %5 %6 %7 %8 %9
cd ..
+
+:dud
+if not exist "DLL Unicode Debug" goto dur
cd "DLL Unicode Debug"
-call ..\..\run_tests.bat %*
+call ..\..\run_tests.bat %1 %2 %3 %4 %5 %6 %7 %8 %9
cd ..
+
+:dur
+if not exist "DLL Unicode Release" goto sd
cd "DLL Unicode Release"
-call ..\..\run_tests.bat %*
+call ..\..\run_tests.bat %1 %2 %3 %4 %5 %6 %7 %8 %9
cd ..
+
+:sd
+if not exist "static Debug" goto sr
cd "static Debug"
-call ..\..\run_tests.bat %*
+call ..\..\run_tests.bat %1 %2 %3 %4 %5 %6 %7 %8 %9
cd ..
+
+:sr
+if not exist "static Release" goto sud
cd "static Release"
-call ..\..\run_tests.bat %*
+call ..\..\run_tests.bat %1 %2 %3 %4 %5 %6 %7 %8 %9
cd ..
+
+:sud
+if not exist "static Unicode Debug" goto sur
cd "static Unicode Debug"
-call ..\..\run_tests.bat %*
+call ..\..\run_tests.bat %1 %2 %3 %4 %5 %6 %7 %8 %9
cd ..
+
+:sur
+if not exist "static Unicode Release" goto done
cd "static Unicode Release"
-call ..\..\run_tests.bat %*
+call ..\..\run_tests.bat %1 %2 %3 %4 %5 %6 %7 %8 %9
cd ..
+
+:done \ No newline at end of file