|
From: Scott M S. <st...@us...> - 2005-01-10 15:48:08
|
User: starksm Date: 05/01/10 07:47:58 Modified: . Tag: Branch_3_2 build.xml Log: Only run the tests-security-manager target if jdk 1.4 is used as the jboss jaas impl only support the authentication part and Subject.doAs invocations fail. Revision Changes Path No revision No revision 1.165.2.179 +4 -3 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.178 retrieving revision 1.165.2.179 diff -u -r1.165.2.178 -r1.165.2.179 --- build.xml 8 Jan 2005 19:49:25 -0000 1.165.2.178 +++ build.xml 10 Jan 2005 15:47:52 -0000 1.165.2.179 @@ -6,7 +6,7 @@ <!-- See terms of license at http://www.gnu.org. --> <!-- ============================================================ --> -<!-- $Id: build.xml,v 1.165.2.178 2005/01/08 19:49:25 bwang00 Exp $ --> +<!-- $Id: build.xml,v 1.165.2.179 2005/01/10 15:47:52 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> <import file="../tools/etc/buildmagic/build-common.xml"/> @@ -549,7 +549,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="-XX:MaxPermSize=70m -Xmx128m"/> <wait-on-host /> <antcall target="tests-standard-unit" /> <antcall target="tests-client-unit" /> @@ -1117,7 +1117,8 @@ <!-- Tests of Java2 permissions. The JBoss server must be running with a security manager for this test --> <target name="tests-security-manager" - description="Tests run against a jboss server with a security manager"> + description="Tests run against a jboss server with a security manager" + if="HAVE_JDK_1.4"> <start-securitymgr/> <mkdir dir="${build.reports}"/> <mkdir dir="${build.testlog}"/> |