diff --git a/helpers/bootrr b/helpers/bootrr index 20975c4..eea482e 100644 --- a/helpers/bootrr +++ b/helpers/bootrr @@ -15,7 +15,12 @@ timeout() { test_report_exit() { TEST_RESULT=$1 - lava-test-case ${TEST_CASE_ID} --result ${TEST_RESULT} + command -v lava-test-case + if [ "$?" -eq 0 ]; then + lava-test-case ${TEST_CASE_ID} --result ${TEST_RESULT} + else + echo "" + fi exit 0 }