diff options
Diffstat (limited to 'src/test/run_test.cmd')
-rw-r--r-- | src/test/run_test.cmd | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/run_test.cmd b/src/test/run_test.cmd new file mode 100644 index 00000000..ef6de9bd --- /dev/null +++ b/src/test/run_test.cmd | |||
@@ -0,0 +1,15 @@ | |||
1 | @setlocal | ||
2 | @pushd %~dp0 | ||
3 | |||
4 | @set _C=Debug | ||
5 | :parse_args | ||
6 | @if /i "%1"=="release" set _C=Release& shift | ||
7 | @if not "%1"=="" shift & goto parse_args | ||
8 | |||
9 | @echo Run integration tests %_C% | ||
10 | |||
11 | @SET RuntimeTestsEnabled=true | ||
12 | @call burn\test_burn.cmd | ||
13 | |||
14 | @popd | ||
15 | @endlocal | ||