summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2003-12-16 03:30:34 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2003-12-16 03:30:34 (GMT)
commit991bd6c9e3f590104269c70c4e7becb55770091f (patch)
tree5f6139b0ab5a3b127f16ff936c7a4b5884126c1a /bin
parentfaa4216e9927b52048505dc5f68fb860d6c5c6ae (diff)
downloadhdf5-991bd6c9e3f590104269c70c4e7becb55770091f.zip
hdf5-991bd6c9e3f590104269c70c4e7becb55770091f.tar.gz
hdf5-991bd6c9e3f590104269c70c4e7becb55770091f.tar.bz2
[svn-r7960] Purpose:
feature. Description: Output skipped tests to a different file for better printout. Platforms tested: Just eyeballed it since the changes are trivial.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/runtest3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/runtest b/bin/runtest
index be959f0..b0b27f5 100755
--- a/bin/runtest
+++ b/bin/runtest
@@ -113,7 +113,7 @@ REPORT_RESULT()
{
if [ $retcode -eq 0 ]; then
if [ $skiptest = yes ]; then
- PRINT "SKIPPED ${HOSTNAME}: $TEST_TYPE" | tee -a $PASSEDLOG
+ PRINT "SKIPPED ${HOSTNAME}: $TEST_TYPE" | tee -a $SKIPPEDLOG
else
PRINT "PASSED ${HOSTNAME}: $TEST_TYPE" | tee -a $PASSEDLOG
fi
@@ -604,6 +604,7 @@ LOGDIR=${SNAPYARD}/log
LOGBASENAME=${LOGDIR}/${HOSTNAME}
PASSEDLOG=${LOGDIR}/PASSED_LOG_${TODAY}
FAILEDLOG=${LOGDIR}/FAILED_LOG_${TODAY}
+SKIPPEDLOG=${LOGDIR}/SKIPPED_LOG_${TODAY}
TIMELOG=${LOGDIR}/TIME_LOG_${TODAY}
CVSLOG=${LOGDIR}/CVS_LOG_${TODAY}
CVSLOG_LOCK=${LOGDIR}/CVS_LOG_LOCK_${TODAY}