cvs commit: jakarta-log4j/tests build.xml
[email protected] 7 Jul 2002 06:47:43 -0000
| Newsgroups | gmane.comp.jakarta.log4j.cvs |
|---|---|
| Message-ID | <[email protected]> |
mwomack 2002/07/06 23:47:43
Modified: tests Tag: v1_2-branch build.xml
Log:
PatternParserTestCase which tests mdc conversion pattern. Tests fix for bug #10528.
Revision Changes Path
No revision
No revision
1.16.2.3 +10 -2 jakarta-log4j/tests/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-log4j/tests/build.xml,v
retrieving revision 1.16.2.2
retrieving revision 1.16.2.3
diff -u -r1.16.2.2 -r1.16.2.3
--- build.xml 11 Jun 2002 13:21:59 -0000 1.16.2.2
+++ build.xml 7 Jul 2002 06:47:43 -0000 1.16.2.3
@@ -99,8 +99,8 @@
HierarchyThreshold, SocketServer,
XMLLayout, AsyncAppender,
OptionConverter, BoundedFIFO,
- CyclicBuffer, OR, LevelMatchFilter,
- DRFA"/>
+ CyclicBuffer, PatternParser, OR,
+ LevelMatchFilter, DRFA"/>
<!-- ================================================================= -->
<!-- Longer unit tests -->
@@ -239,6 +239,14 @@
<classpath refid="tests.classpath"/>
<formatter type="plain" usefile="false"/>
<test name="org.apache.log4j.helpers.CyclicBufferTestCase" />
+ </junit>
+ </target>
+
+ <target name="PatternParser" depends="build">
+ <junit printsummary="yes" fork="yes" haltonfailure="yes">
+ <classpath refid="tests.classpath"/>
+ <formatter type="plain" usefile="false"/>
+ <test name="org.apache.log4j.helpers.PatternParserTestCase" />
</junit>
</target>