diff options
Diffstat (limited to '')
-rw-r--r-- | src/test/test.cmd | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/test/test.cmd b/src/test/test.cmd index 169b229c..44965457 100644 --- a/src/test/test.cmd +++ b/src/test/test.cmd | |||
@@ -4,11 +4,13 @@ | |||
4 | @set _C=Debug | 4 | @set _C=Debug |
5 | :parse_args | 5 | :parse_args |
6 | @if /i "%1"=="release" set _C=Release | 6 | @if /i "%1"=="release" set _C=Release |
7 | @if /i "%1"=="test" set RuntimeTestsEnabled=true | ||
7 | @if not "%1"=="" shift & goto parse_args | 8 | @if not "%1"=="" shift & goto parse_args |
8 | 9 | ||
9 | @echo Build integration tests %_C% | 10 | @if "%RuntimeTestsEnabled%"=="" echo Build integration tests %_C% |
11 | @if not "%RuntimeTestsEnabled%"=="" set _T=test&echo Run integration tests %_C% | ||
10 | 12 | ||
11 | @call burn\test_burn.cmd %_C% | 13 | @call burn\test_burn.cmd %_C% %_T% |
12 | 14 | ||
13 | @popd | 15 | @popd |
14 | @endlocal | 16 | @endlocal |