diff options
Diffstat (limited to 'bin/runtest')
-rwxr-xr-x | bin/runtest | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/runtest b/bin/runtest index 5cfffbb..0c94865 100755 --- a/bin/runtest +++ b/bin/runtest @@ -644,7 +644,7 @@ if [ -n "$TESTHOST" -a $HOSTNAME != "$TESTHOST" ]; then TMP_OUTPUT="#$h.out" cat $TMP_OUTPUT # Verify test script did complete by checking the last lines - (tail -2 $TMP_OUTPUT | grep -s '^Total time' > /dev/null 2>&1) || + (tail -2 $TMP_OUTPUT | grep -s '^Grand total' > /dev/null 2>&1) || (REPORT_ERR "****FAILED ${h}: snaptest did not complete****" && PRINT_BLANK) rm $TMP_OUTPUT |