[slime-cvs] CVS update: slime/test.sh

Luke Gorrie lgorrie at common-lisp.net
Fri Oct 17 19:45:28 UTC 2003


Update of /project/slime/cvsroot/slime
In directory common-lisp.net:/tmp/cvs-serv32152

Modified Files:
	test.sh 
Log Message:
When the test fails to complete, print "crashed" instead of reporting
nonsense.

Date: Fri Oct 17 15:45:27 2003
Author: lgorrie

Index: slime/test.sh
diff -u slime/test.sh:1.3 slime/test.sh:1.4
--- slime/test.sh:1.3	Thu Oct 16 18:56:37 2003
+++ slime/test.sh	Fri Oct 17 15:45:27 2003
@@ -39,8 +39,11 @@
 
 status=$?
 
-if [ $status != 0 ]; then
+if [ -f $results ]; then
     echo $status "test(s) failed."
+else
+    # Tests crashed
+    echo crashed
 fi
 
 exit $status





More information about the slime-cvs mailing list