Author: alessio.soldano(a)jboss.com
Date: 2011-03-08 04:18:16 -0500 (Tue, 08 Mar 2011)
New Revision: 13858
Modified:
shared-testsuite/trunk/src/test/ant-import/build-testsuite.xml
Log:
[JBWS-3238] improving wildcard
Modified: shared-testsuite/trunk/src/test/ant-import/build-testsuite.xml
===================================================================
--- shared-testsuite/trunk/src/test/ant-import/build-testsuite.xml 2011-03-07 15:08:57 UTC
(rev 13857)
+++ shared-testsuite/trunk/src/test/ant-import/build-testsuite.xml 2011-03-08 09:18:16 UTC
(rev 13858)
@@ -435,7 +435,7 @@
<!-- Run all unit tests and generate a report -->
<target name="tests" depends="tests-jars" description="Run
all unit tests and generate a report">
<antcall target="tests-run-internal">
- <param name="include.wildcard"
value="org/jboss/test/ws/**/*TestCase*.class"/>
+ <param name="include.wildcard"
value="org/jboss/test/ws/**/*TestCase.class
org/jboss/test/ws/**/*TestCaseForked.class"/>
<param name="exclude.wildcard"
value="no-wildcard-exclude-see-excludesfile"/>
<param name="haltonfailure" value="false"/>
</antcall>
@@ -445,7 +445,7 @@
<!-- Run smoke test cases -->
<target name="tests-smoke" depends="tests-init"
description="Run smoke unit tests">
<antcall target="tests-run-internal">
- <param name="include.wildcard"
value="org/jboss/test/ws/jaxws/samples/**/*TestCase.class
org/jboss/test/ws/*/smoke/**/*TestCase.class"/>
+ <param name="include.wildcard"
value="org/jboss/test/ws/jaxws/samples/**/*TestCase.class
org/jboss/test/ws/*/smoke/**/*TestCase.class
org/jboss/test/ws/*/smoke/**/*TestCaseForked.class"/>
<param name="exclude.wildcard"
value="org/jboss/test/ws/*/samples/jaxr/**"/>
<!--
According to our commit policy, haltonfailure MUST be be true for tests-smoke
Show replies by date