diff options
Diffstat (limited to 'common/scripts/ptest-lava-wrapper.sh')
-rwxr-xr-x | common/scripts/ptest-lava-wrapper.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/common/scripts/ptest-lava-wrapper.sh b/common/scripts/ptest-lava-wrapper.sh index 07a951a..3b186b4 100755 --- a/common/scripts/ptest-lava-wrapper.sh +++ b/common/scripts/ptest-lava-wrapper.sh @@ -19,8 +19,11 @@ else # sh: execute the lava-test-case commands test_pass=$(echo "$UNIT_LOG" | grep -e 'PASS' | wc -l) test_fail=$(echo "$UNIT_LOG" | grep -e 'FAIL' | wc -l) - lava-test-case passed-commands --result PASS --measurement $test_pass --units pass - lava-test-case failed-commands --result FAIL --measurement $test_fail --units fail + lava-test-case ${unit}-passed-commands --result PASS --measurement $test_pass --units pass + if ! [ x"0" = x"$test_fail"] ; then + lava-test-case ${unit}-failed-commands --result FAIL --measurement $test_fail --units fail + echo "$UNIT_LOG" | grep -e 'FAIL' + fi lava-test-set stop ptest-$unit else lava-test-case ptest-runner ${unit} --result fail |