diff --git a/script/test.cmd b/script/test.cmd index 31907ab6..f2d97303 100644 --- a/script/test.cmd +++ b/script/test.cmd @@ -1,2 +1,9 @@ +@echo off msbuild /p:Configuration=Test tests.vcxproj -.\test\tests.exe --reporter=singleline --no-color \ No newline at end of file + +set only_arg= +IF not "%~1"=="" ( + set only_arg=--only=%1 +) + +.\test\tests.exe --reporter=singleline --no-color %only_arg%