[m-rev.] for review: improve test framework
Simon Taylor
stayl at cs.mu.OZ.AU
Sun Aug 18 01:02:18 AEST 2002
On 18-Aug-2002, Simon Taylor <stayl at cs.mu.OZ.AU> wrote:
Estimated hours taken: 0.1
Branches: main
tools/run_all_tests_from_cron:
Fix inverted tests in my last change.
Index: run_all_tests_from_cron
===================================================================
RCS file: /home/mercury1/repository/mercury/tools/run_all_tests_from_cron,v
retrieving revision 1.49
diff -u -u -r1.49 run_all_tests_from_cron
--- run_all_tests_from_cron 17 Aug 2002 13:52:35 -0000 1.49
+++ run_all_tests_from_cron 17 Aug 2002 15:00:33 -0000
@@ -185,7 +185,7 @@
fi
if [ -f $logfile.errs -o -f $logfile.test_errs ]; then
- if [ ! -f $logfile.errs ]; then
+ if [ -f $logfile.errs ]; then
# Failures building the compiler or library should
# occur early in the log summary.
echo first 10 lines of log file summary:
@@ -193,7 +193,7 @@
echo
echo
fi
- if [ ! -f $logfile.test_errs ]; then
+ if [ -f $logfile.test_errs ]; then
echo first 100 test failures:
grep "FAILED TEST" $logfile.test_errs | head - 100
fi
--------------------------------------------------------------------------
mercury-reviews mailing list
post: mercury-reviews at cs.mu.oz.au
administrative address: owner-mercury-reviews at cs.mu.oz.au
unsubscribe: Address: mercury-reviews-request at cs.mu.oz.au Message: unsubscribe
subscribe: Address: mercury-reviews-request at cs.mu.oz.au Message: subscribe
--------------------------------------------------------------------------
More information about the reviews
mailing list