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

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

@echo Build integration tests %_C%

@call burn\test_burn.cmd %_C%

@popd
@endlocal