20 lines
563 B
Batchfile
20 lines
563 B
Batchfile
rem This takes triggers.txt generated by unit_test binary and produces a bunch of .png files
|
|
rem these images are published at
|
|
|
|
cd ../unit_tests
|
|
make
|
|
if not exist build/rusefi_test.exe echo UNIT TEST COMPILATION FAILED
|
|
if not exist build/rusefi_test.exe exit -1
|
|
|
|
rem This is me using Cygwin on all my Windows devices
|
|
ls -l build/rusefi_test.exe
|
|
|
|
|
|
del triggers.txt
|
|
build\rusefi_test.exe
|
|
pwd
|
|
|
|
if not exist triggers.txt echo triggers.txt generation FAILED
|
|
if not exist triggers.txt exit -1
|
|
|
|
java -cp ../java_console_binary/rusefi_console.jar com.rusefi.TriggerImage |