mirror of
https://github.com/tree-sitter/tree-sitter.git
synced 2026-09-12 16:36:27 -04:00
10 lines
177 B
Batchfile
10 lines
177 B
Batchfile
@echo off
|
|
msbuild /p:Configuration=Test tests.vcxproj
|
|
|
|
set only_arg=
|
|
IF not "%~1"=="" (
|
|
set only_arg=--only=%1
|
|
)
|
|
|
|
.\test\tests.exe --reporter=singleline --no-color %only_arg%
|