2018-05-21 14:09:09 -07:00
|
|
|
@echo off
|
2017-08-08 14:03:33 -07:00
|
|
|
msbuild /p:Configuration=Test tests.vcxproj
|
2018-05-21 14:09:09 -07:00
|
|
|
|
|
|
|
|
set only_arg=
|
|
|
|
|
IF not "%~1"=="" (
|
|
|
|
|
set only_arg=--only=%1
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
.\test\tests.exe --reporter=singleline --no-color %only_arg%
|