|
From: Scott M S. <st...@us...> - 2004-12-22 20:32:01
|
User: starksm
Date: 04/12/22 12:31:40
Modified: . 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
1.432 +2 -3 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.431
retrieving revision 1.432
diff -u -r1.431 -r1.432
--- build.xml 20 Dec 2004 17:56:51 -0000 1.431
+++ build.xml 22 Dec 2004 20:31:40 -0000 1.432
@@ -6,7 +6,7 @@
<!-- See terms of license at http://www.gnu.org. -->
<!-- ============================================================ -->
-<!-- $Id: build.xml,v 1.431 2004/12/20 17:56:51 starksm Exp $ -->
+<!-- $Id: build.xml,v 1.432 2004/12/22 20:31:40 starksm Exp $ -->
<project default="main" name="JBoss/Testsuite">
<import file="../tools/etc/buildmagic/build-common.xml"/>
@@ -576,7 +576,7 @@
<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-standard-unit"/>
<antcall target="tests-client-unit"/>
@@ -587,7 +587,6 @@
<antcall target="tests-jbossmx-performance"/>
<antcall target="tests-iiop"/>
<antcall target="tests-webservice" />
-<!-- <antcall target="tests-jaxr" />-->
<stop-jboss/>
<wait-on-shutdown conf="all" />
</target>
|