Author: thomas.diesler(a)jboss.com
Date: 2007-03-29 18:58:12 -0400 (Thu, 29 Mar 2007)
New Revision: 2720
Modified:
trunk/jbossws-tests/build.xml
Log:
Fix ejb3 client classpath
Modified: trunk/jbossws-tests/build.xml
===================================================================
--- trunk/jbossws-tests/build.xml 2007-03-29 22:33:22 UTC (rev 2719)
+++ trunk/jbossws-tests/build.xml 2007-03-29 22:58:12 UTC (rev 2720)
@@ -198,6 +198,7 @@
<pathelement location="${jboss.client}/jbossretro-rt.jar"/>
<pathelement location="${jboss.client}/log4j.jar"/>
<pathelement location="${jboss.client}/jbossall-client.jar"/>
+ <pathelement location="${jboss.lib}/jboss-aop-jdk50.jar"/>
<pathelement location="${jboss.lib}/jboss-vfs.jar"/>
<pathelement location="${jboss.server.lib}/hibernate3.jar"/>
<pathelement location="${jboss.server.lib}/jboss.jar"/>
@@ -452,6 +453,7 @@
<target name="tests" depends="main" description="Run all
unit tests and generate a report">
<antcall target="tests-main">
<param name="include.wildcard"
value="org/jboss/test/ws/**/*TestCase.class"/>
+ <param name="exclude.wildcard"
value="no-wildcard-exclude-see-excludesfile"/>
<param name="haltonfailure" value="false"/>
</antcall>
<antcall target="tests-report"/>
@@ -461,6 +463,7 @@
<target name="tests-samples" depends="init"
description="Run samples unit tests">
<antcall target="tests-main">
<param name="include.wildcard"
value="org/jboss/test/ws/*/samples/**/*TestCase.class"/>
+ <param name="exclude.wildcard"
value="org/jboss/test/ws/*/samples/jaxr/**"/>
<param name="haltonfailure" value="true"/>
</antcall>
<antcall target="tests-report"/>
@@ -470,6 +473,7 @@
<target name="tests-tools" depends="init" description="Run
tools unit tests">
<antcall target="tests-main">
<param name="include.wildcard"
value="org/jboss/test/ws/tools/**/*TestCase.class"/>
+ <param name="exclude.wildcard"
value="no-wildcard-exclude-see-excludesfile"/>
<param name="haltonfailure" value="false"/>
</antcall>
<antcall target="tests-report"/>
@@ -482,6 +486,7 @@
<target name="test" depends="init" if="test"
description="Run all unit tests in a given directory">
<antcall target="tests-main">
<param name="include.wildcard"
value="org/jboss/test/ws/${test}/**/*TestCase.class"/>
+ <param name="exclude.wildcard"
value="no-wildcard-exclude-see-excludesfile"/>
<param name="haltonfailure" value="false"/>
</antcall>
</target>
@@ -516,7 +521,7 @@
<formatter type="plain" usefile="true"/>
<formatter type="xml" usefile="true"/>
<batchtest todir="${tests.output.dir}/reports"
fork="true">
- <fileset dir="${tests.output.dir}/classes"
includes="${include.wildcard}" excludesfile="${excludesfile}"/>
+ <fileset dir="${tests.output.dir}/classes"
includes="${include.wildcard}" excludes="${exclude.wildcard}"
excludesfile="${excludesfile}"/>
</batchtest>
</junit>
</target>
Show replies by date