bodewig 2005/03/17 00:10:50
Modified: . CONTRIBUTORS WHATSNEW
docs/manual/OptionalTasks junit.html
src/main/org/apache/tools/ant/taskdefs/optional/junit
JUnitTestRunner.java
Log:
swallow sun.reflect lines when filtertrace is true, PR 22758, Submitted by Emmanuel Bourg
<ebourg at apache dot org>
Revision Changes Path
1.46 +1 -0 ant/CONTRIBUTORS
Index: CONTRIBUTORS
===================================================================
RCS file: /home/cvs/ant/CONTRIBUTORS,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- CONTRIBUTORS 14 Mar 2005 10:42:35 -0000 1.45
+++ CONTRIBUTORS 17 Mar 2005 08:10:49 -0000 1.46
@@ -58,6 +58,7 @@
Don Jeffery
Drew Sudell
Eli Tucker
+Emmanuel Bourg
Eric Pugh
Erik Hatcher
Erik Langenbach
1.782 +5 -0 ant/WHATSNEW
Index: WHATSNEW
===================================================================
RCS file: /home/cvs/ant/WHATSNEW,v
retrieving revision 1.781
retrieving revision 1.782
diff -u -r1.781 -r1.782
--- WHATSNEW 16 Mar 2005 16:56:03 -0000 1.781
+++ WHATSNEW 17 Mar 2005 08:10:49 -0000 1.782
@@ -151,6 +151,11 @@
handled to nested projects.
Bugzilla report 25777
+* <junit> with filtertrace="true" will now also swallow lines for the
+ sun.reflect package. If you need to see them in your stack trace,
+ you must set filtertrace to false.
+ Bugzilla Report 22758
+
Other changes:
--------------
1.39 +1 -0 ant/docs/manual/OptionalTasks/junit.html
Index: junit.html
===================================================================
RCS file: /home/cvs/ant/docs/manual/OptionalTasks/junit.html,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- junit.html 7 Mar 2005 18:11:14 -0000 1.38
+++ junit.html 17 Mar 2005 08:10:49 -0000 1.39
@@ -207,6 +207,7 @@
"junit.awtui.TestRunner"
"junit.textui.TestRunner"
"java.lang.reflect.Method.invoke("
+ "sun.reflect."
"org.apache.tools.ant."</pre></p>
<h3><a name="nested">Nested Elements</a></h3>
1.55 +2 -1 ant/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTestRunner.java
Index: JUnitTestRunner.java
===================================================================
RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTestRunner.java,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- JUnitTestRunner.java 22 Nov 2004 09:23:34 -0000 1.54
+++ JUnitTestRunner.java 17 Mar 2005 08:10:49 -0000 1.55
@@ -1,5 +1,5 @@
/*
- * Copyright 2000-2004 The Apache Software Foundation
+ * Copyright 2000-2005 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -113,6 +113,7 @@
"junit.awtui.TestRunner",
"junit.textui.TestRunner",
"java.lang.reflect.Method.invoke(",
+ "sun.reflect.",
"org.apache.tools.ant."
};
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org
|