Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
Brad Bishop | a5c52ff | 2018-11-23 10:55:50 +1300 | [diff] [blame] | 3 | LOG="$(pwd)/test.log" |
| 4 | # make the test continue to execute even one fail |
| 5 | ./test --keep-going 2>&1|tee ${LOG} |
| 6 | # translate the test report |
| 7 | # "tests/18imsm-r10_4d-takeover-r0_2d... succeeded" -> "PASS: tests/18imsm-r10_4d-takeover-r0_2d" |
| 8 | # "tests/19raid6repair... FAILED - see //log for details" -> "FAIL: tests/19raid6repair" |
| 9 | sed -i -e '/succeeded/ s/^/PASS: /' -e '/FAILED/ s/^/FAIL: /' ${LOG} |
| 10 | sed -i -e 's/... FAILED//g' -e 's/... succeeded//g' ${LOG} |
| 11 | passed=`grep PASS: ${LOG}|wc -l` |
| 12 | failed=`grep FAIL: ${LOG}|wc -l` |
| 13 | all=$((passed + failed)) |
| 14 | |
| 15 | ( echo "=== Test Summary ===" |
| 16 | echo "TOTAL: ${all}" |
| 17 | echo "PASSED: ${passed}" |
| 18 | echo "FAILED: ${failed}" |
| 19 | ) | tee -a /${LOG} |