[Nice-commit] Nice/src/nice/tools/testsuite TestCase.java,1.19,1.20
Brought to you by:
bonniot
From: <ar...@us...> - 2003-03-17 22:48:59
|
Update of /cvsroot/nice/Nice/src/nice/tools/testsuite In directory sc8-pr-cvs1:/tmp/cvs-serv23646/F:/nice/src/nice/tools/testsuite Modified Files: TestCase.java Log Message: fix printing in bug case. Index: TestCase.java =================================================================== RCS file: /cvsroot/nice/Nice/src/nice/tools/testsuite/TestCase.java,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** TestCase.java 16 Mar 2003 19:21:45 -0000 1.19 --- TestCase.java 17 Mar 2003 22:48:56 -0000 1.20 *************** *** 396,402 **** */ public void fail() { ! if (isKnownBug) TestNice.increaseKnownBug(); ! else { TestNice.increaseFailed(); --- 396,403 ---- */ public void fail() { ! if (isKnownBug) { TestNice.increaseKnownBug(); ! TestNice.getOutput().endTestCase(true); ! } else { TestNice.increaseFailed(); |