The following patch corrects a change introduced a couple of days ago to
Magic's Context class.  The old change introduced the parameterization
of unit test class filters but in the process changed the included
pattern from only *UnitTest.java to *Test.java.  That change is breaking
builds in logkit, meta, and repository.

The following patch reverts the pattern to the original form which will
restore normal build behavior.

Stephen.



Index: src/main/org/apache/avalon/tools/model/Context.java
===================================================================
--- src/main/org/apache/avalon/tools/model/Context.java (revision 37479)
+++ src/main/org/apache/avalon/tools/model/Context.java (working copy)
@@ -146,7 +146,7 @@
     /**
     * default value
     */
-    public static final String TEST_INCLUDES_VALUE =
"**/*TestCase.java, **/*Test.java";
+    public static final String TEST_INCLUDES_VALUE =
"**/*TestCase.java";

     /**
     * the key for the exclude pattern for test cases


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to