summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorslavomir.katuscak%sun.com <devnull@localhost>2007-03-07 21:14:49 +0000
committerslavomir.katuscak%sun.com <devnull@localhost>2007-03-07 21:14:49 +0000
commit718ecb6d87d91db694d25847429b6ba68a354dcb (patch)
tree3c60483c6c55dc9258aa90ed82ee386c60af41ef
parent0f82be25a584ebc5971d08285c1ee6a8dc371cb5 (diff)
downloadnss-hg-718ecb6d87d91db694d25847429b6ba68a354dcb.tar.gz
bug 372279 - patch for incomplete logs; r=christophe, r=nelson
-rwxr-xr-xsecurity/nss/tests/all.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/security/nss/tests/all.sh b/security/nss/tests/all.sh
index 67aa561bd..5fb05db0e 100755
--- a/security/nss/tests/all.sh
+++ b/security/nss/tests/all.sh
@@ -97,12 +97,12 @@ do
then
echo "Running tests for $i" >> ${LOGFILE}
echo "TIMESTAMP $i BEGIN: `date`" >> ${LOGFILE}
- (cd ${QADIR}/$i ; . ./$SCRIPTNAME all file) >> ${LOGFILE} 2>&1
+ (cd ${QADIR}/$i ; . ./$SCRIPTNAME all file >> ${LOGFILE} 2>&1)
echo "TIMESTAMP $i END: `date`" >> ${LOGFILE}
else
echo "Running tests for $i" | tee -a ${LOGFILE}
echo "TIMESTAMP $i BEGIN: `date`" | tee -a ${LOGFILE}
- (cd ${QADIR}/$i ; . ./$SCRIPTNAME all file) 2>&1 | tee -a ${LOGFILE}
+ (cd ${QADIR}/$i ; . ./$SCRIPTNAME all file 2>&1 | tee -a ${LOGFILE})
echo "TIMESTAMP $i END: `date`" | tee -a ${LOGFILE}
fi
done