|
From: Scott M S. <st...@us...> - 2004-12-22 19:55:14
|
User: starksm
Date: 04/12/22 11:55:06
Modified: . Tag: Branch_4_0 build.xml
Log:
Include -Djava.endorsed.dirs=${jboss.dist}/lib/endorsed in the jvmargs passed to the start-jboss conf="all" of the jboss-all-config-tests target.
Revision Changes Path
No revision
No revision
1.406.2.30 +3 -3 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.406.2.29
retrieving revision 1.406.2.30
diff -u -r1.406.2.29 -r1.406.2.30
--- build.xml 21 Dec 2004 02:25:48 -0000 1.406.2.29
+++ build.xml 22 Dec 2004 19:55:05 -0000 1.406.2.30
@@ -6,7 +6,7 @@
<!-- See terms of license at http://www.gnu.org. -->
<!-- ============================================================ -->
-<!-- $Id: build.xml,v 1.406.2.29 2004/12/21 02:25:48 starksm Exp $ -->
+<!-- $Id: build.xml,v 1.406.2.30 2004/12/22 19:55:05 starksm Exp $ -->
<project default="main" name="JBoss/Testsuite">
<import file="../tools/etc/buildmagic/build-common.xml"/>
@@ -584,8 +584,9 @@
<target name="jboss-all-config-tests"
description="The units tests which are run against the jboss all config">
- <start-jboss conf="all" jvmargs="-Xmx128m"/>
+ <start-jboss conf="all" jvmargs="-Djava.endorsed.dirs=${jboss.dist}/lib/endorsed -Xmx128m"/>
<wait-on-host/>
+ <antcall target="tests-jaxr"/>
<antcall target="tests-standard-unit"/>
<antcall target="tests-client-unit"/>
<antcall target="tests-security-basic-unit"/>
@@ -594,7 +595,6 @@
<antcall target="tests-jbossmx-implementation"/>
<antcall target="tests-jbossmx-performance"/>
<antcall target="tests-iiop"/>
- <antcall target="tests-jaxr"/>
<antcall target="tests-webservice"/>
<antcall target="tests-txtimer"/>
<stop-jboss/>
|