mirror of
https://github.com/tree-sitter/tree-sitter.git
synced 2026-09-10 07:26:23 -04:00
11 lines
143 B
Batchfile
11 lines
143 B
Batchfile
@echo off
|
|
|
|
setlocal
|
|
set RUST_TEST_THREADS=1
|
|
set RUST_BACKTRACE=full
|
|
cargo test "%~1"
|
|
if %errorlevel% NEQ 0 (
|
|
exit /b %errorlevel%
|
|
)
|
|
endlocal
|