diff options
author | HDF Admin <hdfadmin@ncsa.uiuc.edu> | 2001-08-31 15:10:55 (GMT) |
---|---|---|
committer | HDF Admin <hdfadmin@ncsa.uiuc.edu> | 2001-08-31 15:10:55 (GMT) |
commit | f0fbd004033b60c343687d8b83134ce20e0f0666 (patch) | |
tree | 516f098000cedd4a5e6f20a5824df13de8e6c93b /bin | |
parent | 64db27285f04b712245ccf1ed29a16e70ca68f04 (diff) | |
download | hdf5-f0fbd004033b60c343687d8b83134ce20e0f0666.zip hdf5-f0fbd004033b60c343687d8b83134ce20e0f0666.tar.gz hdf5-f0fbd004033b60c343687d8b83134ce20e0f0666.tar.bz2 |
[svn-r4418] Purpose:
Bug fix
Description:
when a snaptest did not complete, it reported it as a failure
of the launching host, rather than the testing host.
Changed it to report the testing host.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/runtest | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/runtest b/bin/runtest index 97dd51c..0be4155 100755 --- a/bin/runtest +++ b/bin/runtest @@ -618,7 +618,7 @@ if [ -n "$TESTHOST" -a $HOSTNAME != "$TESTHOST" ]; then 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) || - (REPORT_ERR "****FAILED ${HOSTNAME}: snaptest did not complete****" && + (REPORT_ERR "****FAILED ${h}: snaptest did not complete****" && PRINT_BLANK) rm $TMP_OUTPUT done |