Add support for running focused tests via windows test script

This commit is contained in:
Max Brunsfeld 2018-05-21 14:09:09 -07:00
parent 78f28b14ce
commit 95fbc23fd6

View file

@ -1,2 +1,9 @@
@echo off
msbuild /p:Configuration=Test tests.vcxproj
.\test\tests.exe --reporter=singleline --no-color
set only_arg=
IF not "%~1"=="" (
set only_arg=--only=%1
)
.\test\tests.exe --reporter=singleline --no-color %only_arg%