|
From: Dr. C. G. J. <cg...@us...> - 2003-11-28 10:01:35
|
User: cgjung
Date: 03/11/28 02:01:35
Modified: . build.xml
Log:
Allow for a refined test pattern in webservice tests
Revision Changes Path
1.316 +3 -3 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.315
retrieving revision 1.316
diff -u -r1.315 -r1.316
--- build.xml 27 Nov 2003 16:43:41 -0000 1.315
+++ build.xml 28 Nov 2003 10:01:33 -0000 1.316
@@ -15,7 +15,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.315 2003/11/27 16:43:41 tdiesler Exp $ -->
+<!-- $Id: build.xml,v 1.316 2003/11/28 10:01:33 cgjung Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -5391,7 +5391,7 @@
<mkdir dir="${build.reports}"/>
<mkdir dir="${build.testlog}"/>
<!-- choose a testpattern via a property -->
- <property name="jbosstest.pattern" value="**"/>
+ <property name="jbosstest.pattern" value="**/*"/>
<junit dir="${module.output}"
printsummary="${junit.printsummary}"
haltonerror="${junit.haltonerror}"
@@ -5428,7 +5428,7 @@
fork="${junit.batchtest.fork}">
<fileset dir="${build.classes}">
- <include name="**/test/webservice/${jbosstest.pattern}/*TestCase.class"/>
+ <include name="**/test/webservice/${jbosstest.pattern}TestCase.class"/>
</fileset>
</batchtest>
</junit>
|