summaryrefslogtreecommitdiff
path: root/tests/version_tests/run_all_tests.bat
blob: fb403fd3718f43be7a726f947305274ab99b1742 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
@echo off

:dd
if not exist "DLL Debug" goto dr
cd "DLL Debug"
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 %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 %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 %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 %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 %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 %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 %1 %2 %3 %4 %5 %6 %7 %8 %9
cd ..

:done