aboutsummaryrefslogtreecommitdiff
path: root/src/test/run_test.cmd
blob: ef6de9bd7f894a3192c2a9967e152ab3abc2c558 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@setlocal
@pushd %~dp0

@set _C=Debug
:parse_args
@if /i "%1"=="release" set _C=Release& shift
@if not "%1"=="" shift & goto parse_args

@echo Run integration tests %_C%

@SET RuntimeTestsEnabled=true
@call burn\test_burn.cmd

@popd
@endlocal