Add support for running focused tests via windows test script
This commit is contained in:
parent
78f28b14ce
commit
95fbc23fd6
1 changed files with 8 additions and 1 deletions
|
|
@ -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%
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue