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

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

@echo Burn integration tests %_C%

msbuild -t:Build -Restore -p:Configuration=%_C% -warnaserror || exit /b
msbuild -t:Build -Restore -p:Configuration=%_C% TestData\TestData.proj || exit /b

if /i "%RuntimeTestsEnabled%"=="true" dotnet test -c %_C% --no-build src\WixToolsetTest.BurnE2E

@popd
@endlocal