|
From: Scott M S. <st...@us...> - 2005-03-13 23:10:09
|
User: starksm Date: 05/03/13 15:09:59 Modified: . Tag: Branch_4_0 build.xml Log: Use the XMLJUnitMultipleResultFormatter to seperate the JACC tests rerun with a security manager. Revision Changes Path No revision No revision 1.406.2.44 +5 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.406.2.43 retrieving revision 1.406.2.44 diff -u -r1.406.2.43 -r1.406.2.44 --- build.xml 12 Mar 2005 03:55:52 -0000 1.406.2.43 +++ build.xml 13 Mar 2005 23:09:34 -0000 1.406.2.44 @@ -6,7 +6,7 @@ <!-- See terms of license at http://www.gnu.org. --> <!-- ============================================================ --> -<!-- $Id: build.xml,v 1.406.2.43 2005/03/12 03:55:52 osdchicago Exp $ --> +<!-- $Id: build.xml,v 1.406.2.44 2005/03/13 23:09:34 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> <import file="../tools/etc/buildmagic/build-common.xml"/> @@ -1575,6 +1575,7 @@ <sysproperty key="jboss.tools.dir" file="${project.root}/tools"/> <sysproperty key="jbosstest.deploy.dir" file="${build.lib}"/> <sysproperty key="jbosstest.secure" value="true"/> + <sysproperty key="jboss-junit-configuration" value="JACC+SecurityMgr"/> <!-- Pass along any jbosstest.* system properties --> <syspropertyset> <propertyref prefix="jbosstest."/> @@ -1590,7 +1591,9 @@ <path refid="tests.classpath"/> </classpath> - <formatter type="xml"/> + <formatter classname="org.jboss.ant.taskdefs.XMLJUnitMultipleResultFormatter" + usefile="${junit.formatter.usefile}" + extension="-${jboss-junit-configuration}.xml" /> <batchtest todir="${build.reports}" haltonerror="false" |