cvs commit: jakarta-log4j/tests build.xml
[email protected] 12 Jun 2002 06:11:33 -0000
| Newsgroups | gmane.comp.jakarta.log4j.cvs |
|---|---|
| Message-ID | <[email protected]> |
mwomack 2002/06/11 23:11:33
Modified: tests build.xml
Log:
Added test case for filters.LevelMatchFilterTestCase
Renamed existing varia filter test cases.
Revision Changes Path
1.19 +14 -5 jakarta-log4j/tests/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-log4j/tests/build.xml,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- build.xml 25 May 2002 06:16:54 -0000 1.18
+++ build.xml 12 Jun 2002 06:11:33 -0000 1.19
@@ -101,8 +101,9 @@
HierarchyThreshold, SocketServer,
XMLLayout, AsyncAppender,
OptionConverter, BoundedFIFO,
- CyclicBuffer, OR, LevelMatchFilter,
- LevelRangeFilter, NDCMatchFilter, DRFA"/>
+ CyclicBuffer, OR, VariaLevelMatchFilter,
+ VariaLevelRangeFilter, VariaNDCMatchFilter,
+ FiltersLevelMatchFilter, DRFA"/>
<!-- ================================================================= -->
<!-- Longer unit tests -->
@@ -204,7 +205,7 @@
</junit>
</target>
- <target name="LevelMatchFilter" depends="build">
+ <target name="VariaLevelMatchFilter" depends="build">
<junit printsummary="yes" fork="yes" haltonfailure="yes">
<classpath refid="tests.classpath"/>
<formatter type="plain" usefile="false"/>
@@ -212,7 +213,7 @@
</junit>
</target>
- <target name="LevelRangeFilter" depends="build">
+ <target name="VariaLevelRangeFilter" depends="build">
<junit printsummary="yes" fork="yes" haltonfailure="yes">
<classpath refid="tests.classpath"/>
<formatter type="plain" usefile="false"/>
@@ -220,11 +221,19 @@
</junit>
</target>
- <target name="NDCMatchFilter" depends="build">
+ <target name="VariaNDCMatchFilter" depends="build">
<junit printsummary="yes" fork="yes" haltonfailure="yes">
<classpath refid="tests.classpath"/>
<formatter type="plain" usefile="false"/>
<test name="org.apache.log4j.varia.NDCMatchFilterTestCase" />
+ </junit>
+ </target>
+
+ <target name="FiltersLevelMatchFilter" depends="build">
+ <junit printsummary="yes" fork="yes" haltonfailure="yes">
+ <classpath refid="tests.classpath"/>
+ <formatter type="plain" usefile="false"/>
+ <test name="org.apache.log4j.filters.LevelMatchFilterTestCase" />
</junit>
</target>