cvs commit: jakarta-log4j/tests build.xml
[email protected] 25 May 2002 06:16:54 -0000
| Newsgroups | gmane.comp.jakarta.log4j.cvs |
|---|---|
| Message-ID | <[email protected]> |
mwomack 02/05/24 23:16:54
Modified: tests build.xml
Log:
Added task for LevelRangeFilterTestCase.
Revision Changes Path
1.18 +9 -1 jakarta-log4j/tests/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-log4j/tests/build.xml,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- build.xml 20 May 2002 06:24:41 -0000 1.17
+++ build.xml 25 May 2002 06:16:54 -0000 1.18
@@ -102,7 +102,7 @@
XMLLayout, AsyncAppender,
OptionConverter, BoundedFIFO,
CyclicBuffer, OR, LevelMatchFilter,
- NDCMatchFilter, DRFA"/>
+ LevelRangeFilter, NDCMatchFilter, DRFA"/>
<!-- ================================================================= -->
<!-- Longer unit tests -->
@@ -209,6 +209,14 @@
<classpath refid="tests.classpath"/>
<formatter type="plain" usefile="false"/>
<test name="org.apache.log4j.varia.LevelMatchFilterTestCase" />
+ </junit>
+ </target>
+
+ <target name="LevelRangeFilter" depends="build">
+ <junit printsummary="yes" fork="yes" haltonfailure="yes">
+ <classpath refid="tests.classpath"/>
+ <formatter type="plain" usefile="false"/>
+ <test name="org.apache.log4j.varia.LevelRangeFilterTestCase" />
</junit>
</target>