diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2001-09-10 03:52:17 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2001-09-10 03:52:17 (GMT) |
commit | 33e8dfc4253560a49e0abb6c3cc978d8e071dd22 (patch) | |
tree | a0eb3a1e0c5ca17101f994c7512ef26209e23fbe /bin/runtest | |
parent | 1c1343450e4c77d5f5997de7bf965cbad75fb8c0 (diff) | |
download | hdf5-33e8dfc4253560a49e0abb6c3cc978d8e071dd22.zip hdf5-33e8dfc4253560a49e0abb6c3cc978d8e071dd22.tar.gz hdf5-33e8dfc4253560a49e0abb6c3cc978d8e071dd22.tar.bz2 |
[svn-r4432] Purpose:
Bug fix.
Description:
Did not update the expected strings for result of grand total test
time. Causing a false report of test failed to complete.
Solution:
Update the strings.
Platforms tested:
Eirene and modi4.
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 |