fix(tests): return error code when build fails
This commit is contained in:
parent
9110335142
commit
f6269df5fc
1 changed files with 1 additions and 0 deletions
|
@ -22,6 +22,7 @@ echo "Running $testcase:"
|
|||
west build -d build/$testcase -b native_posix -- -DZMK_CONFIG=$testcase > /dev/null 2>&1
|
||||
if [ $? -gt 0 ]; then
|
||||
echo "FAIL: $testcase did not build" >> ./build/tests/pass-fail.log
|
||||
exit 1
|
||||
else
|
||||
./build/$testcase/zephyr/zmk.exe | sed -e "s/.*> //" | tee build/$testcase/keycode_events_full.log | sed -n -f $testcase/events.patterns > build/$testcase/keycode_events.log
|
||||
diff -au $testcase/keycode_events.snapshot build/$testcase/keycode_events.log
|
||||
|
|
Loading…
Reference in a new issue