From: Clebert R. S. <cl...@us...> - 2005-03-31 20:38:56
|
User: clebert Date: 05/03/31 12:38:48 Modified: . Tag: Branch_4_0 build.xml Log: Fixing log properties Revision Changes Path No revision No revision 1.406.2.52 +14 -4 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.406.2.51 retrieving revision 1.406.2.52 diff -u -r1.406.2.51 -r1.406.2.52 --- build.xml 31 Mar 2005 20:27:44 -0000 1.406.2.51 +++ build.xml 31 Mar 2005 20:38:38 -0000 1.406.2.52 @@ -6,7 +6,7 @@ <!-- See terms of license at http://www.gnu.org. --> <!-- ============================================================ --> -<!-- $Id: build.xml,v 1.406.2.51 2005/03/31 20:27:44 clebert Exp $ --> +<!-- $Id: build.xml,v 1.406.2.52 2005/03/31 20:38:38 clebert Exp $ --> <project default="main" name="JBoss/Testsuite"> <import file="../tools/etc/buildmagic/build-common.xml"/> @@ -1645,8 +1645,8 @@ <antcall target="tests-baseaop-unit" inheritRefs="true"/> </target> - <target name="tests-compatibility" - description="Checks compatibility on SerialUUID" depends="compile-classes-only"> + <target name="tests-compatibility" + description="Checks compatibility on SerialUUID" depends="init"> <junit dir="${module.output}" printsummary="${junit.printsummary}" haltonerror="${junit.haltonerror}" @@ -1658,6 +1658,16 @@ <jvmarg value="${junit.jvm.options}"/> <sysproperty key="jboss.dist" file="${jboss.dist}"/> + <jvmarg value="-Djava.system.class.loader=org.jboss.aop.standalone.SystemClassLoader"/> + <sysproperty key="jbosstest.deploy.dir" file="${build.lib}"/> + <sysproperty key="build.testlog" value="${build.testlog}"/> + <sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/> + <sysproperty key="jboss.aop.path" file="${source.resources}/cache/standalone/META-INF/jboss-aop.xml"/> + <!-- Pass along any jbosstest.* system properties --> + <syspropertyset> + <propertyref prefix="jbosstest."/> + </syspropertyset> + <classpath> <pathelement location="${build.classes}"/> <pathelement location="${build.resources}"/> @@ -1677,7 +1687,7 @@ </batchtest> </junit> </target> - + <target name="tests-treecacheaop-unit" depends="init"> <mkdir dir="${build.reports}"/> |