[Nice-commit] Nice/src/nice/tools/testsuite TestNice.java,1.23,1.24
Brought to you by:
bonniot
|
From: <bo...@us...> - 2003-04-26 12:41:23
|
Update of /cvsroot/nice/Nice/src/nice/tools/testsuite In directory sc8-pr-cvs1:/tmp/cvs-serv22425/src/nice/tools/testsuite Modified Files: TestNice.java Log Message: Added more debuging info. Index: TestNice.java =================================================================== RCS file: /cvsroot/nice/Nice/src/nice/tools/testsuite/TestNice.java,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** TestNice.java 25 Apr 2003 11:52:18 -0000 1.23 --- TestNice.java 26 Apr 2003 12:41:20 -0000 1.24 *************** *** 193,196 **** --- 193,205 ---- // close writer _output.close(); + + + if (getTestCasesFailed() > 0) + System.exit(1); + + if (getTestCasesWarning() > 0) + System.exit(2); + + System.exit(0); } |