9 lines
239 B
Batchfile
9 lines
239 B
Batchfile
|
|
@echo off
|
||
|
|
REM Launch K1 HIL harness from repo root or any cwd.
|
||
|
|
REM Usage: run_k1_harness.bat selftest
|
||
|
|
REM run_k1_harness.bat run --suite all --profile nightly
|
||
|
|
setlocal
|
||
|
|
cd /d "%~dp0tools"
|
||
|
|
python -m k1_harness %*
|
||
|
|
exit /b %ERRORLEVEL%
|