[Nice-commit] tester Flow4j.test,1.6,1.7 gcj.test,1.1,1.2 run,1.14,1.15
Brought to you by:
bonniot
From: Daniel B. <bo...@us...> - 2005-03-22 23:38:30
|
Update of /cvsroot/nice/tester In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32652 Modified Files: Flow4j.test gcj.test run Log Message: Use exit code 8 for SKIP and 2 for WARN Index: Flow4j.test =================================================================== RCS file: /cvsroot/nice/tester/Flow4j.test,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Flow4j.test 21 Mar 2005 17:27:55 -0000 1.6 --- Flow4j.test 22 Mar 2005 23:38:03 -0000 1.7 *************** *** 7,11 **** if [ ${JDK_VERSION} ] && expr "${JDK_VERSION}" '<' 1.4.0 >/dev/null; then echo "JDK 1.4 needed for the Flow4j test. Skipping." ! exit 2 fi --- 7,11 ---- if [ ${JDK_VERSION} ] && expr "${JDK_VERSION}" '<' 1.4.0 >/dev/null; then echo "JDK 1.4 needed for the Flow4j test. Skipping." ! exit 8 fi Index: run =================================================================== RCS file: /cvsroot/nice/tester/run,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** run 26 Feb 2005 10:51:42 -0000 1.14 --- run 22 Mar 2005 23:38:20 -0000 1.15 *************** *** 105,110 **** 0) echo "OK" ;; 1) echo "FAILURE" ; failed=true ;; ! 2) echo "SKIP" ;; 3) echo "IMPOSSIBLE" ;; *) echo "$((code-10))" ;; esac --- 105,111 ---- 0) echo "OK" ;; 1) echo "FAILURE" ; failed=true ;; ! 2) echo "WARN" ;; 3) echo "IMPOSSIBLE" ;; + 8) echo "SKIP" ;; *) echo "$((code-10))" ;; esac Index: gcj.test =================================================================== RCS file: /cvsroot/nice/tester/gcj.test,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** gcj.test 26 Feb 2005 10:51:42 -0000 1.1 --- gcj.test 22 Mar 2005 23:38:04 -0000 1.2 *************** *** 1,5 **** #! /bin/sh ! [ "$GCJ" ] || exit 2 cd Nice --- 1,5 ---- #! /bin/sh ! [ "$GCJ" ] || exit 8 cd Nice |