Update of /cvsroot/nice/Nice/src/nice/tools/testsuite
In directory sc8-pr-cvs1:/tmp/cvs-serv18718/src/nice/tools/testsuite
Modified Files:
TestCase.java
Log Message:
Print the source of fixed known bugs, so we can identify them easily, and
remove the known bug marker.
Index: TestCase.java
===================================================================
RCS file: /cvsroot/nice/Nice/src/nice/tools/testsuite/TestCase.java,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** TestCase.java 17 Mar 2003 22:48:56 -0000 1.20
--- TestCase.java 8 Apr 2003 13:56:21 -0000 1.21
***************
*** 384,389 ****
*/
public void pass() {
! if (isKnownBug)
TestNice.increaseFixed();
else
TestNice.increaseSucceeded();
--- 384,392 ----
*/
public void pass() {
! if (isKnownBug) {
TestNice.increaseFixed();
+ printSources();
+ TestNice.getOutput().logAndFlush("The above known bug is now FIXED!");
+ }
else
TestNice.increaseSucceeded();
|