From: John S. <sto...@us...> - 2002-12-17 06:34:41
|
User: stormy_sky Date: 02/12/16 22:34:40 Modified: . build.xml Log: Added a simple file-based persistence layer to the EJB Timer Service implementation and its recovery. Added a timer testcase. Revision Changes Path 1.206 +89 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.205 retrieving revision 1.206 diff -u -r1.205 -r1.206 --- build.xml 15 Dec 2002 15:23:20 -0000 1.205 +++ build.xml 17 Dec 2002 06:34:40 -0000 1.206 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.205 2002/12/15 15:23:20 loubyansky Exp $ --> +<!-- $Id: build.xml,v 1.206 2002/12/17 06:34:40 stormy_sky Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -572,6 +572,25 @@ destdir="${build.resources}/jmx/loading/cpmanifest/META-INF"/> </ejbdoclet> + <!-- EJB Timer Service Test Beans --> + <mkdir dir="${build.resources}/timer/META-INF"/> + <ejbdoclet destdir="${build.gen-src}" + ejbspec="2.0" + excludedtags="@version,@author"> + <fileset dir="${source.java}"> + <include name="org/jboss/test/timer/ejb/*Bean.java"/> + </fileset> + <packageSubstitution packages="ejb" substituteWith="interfaces"/> + <remoteinterface/> + <homeinterface/> + <deploymentdescriptor xmlencoding ="UTF-8" + destdir="${build.resources}/timer/META-INF"/> + <jboss xmlencoding="UTF-8" + version="3.0" + destdir="${build.resources}/timer/META-INF" + mergedir="${source.resources}/timer/"/> + </ejbdoclet> + </target> <target name="compile-mbean-sources" depends="init" unless="noxdoclet"> @@ -694,6 +713,7 @@ <call target="_output:hellojrmpiiop"/> <call target="_output:marathon"/> <call target="_output:classloader"/> + <call target="_output:timer"/> </parallel> </target> @@ -2926,6 +2946,21 @@ </jar> </target> + <!-- EJB Timer Service test --> + <target name="_output:timer" depends="_output:support"> + <!-- build session-bean-timer.jar --> + <jar jarfile="${build.lib}/session-bean-timer.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/timer/ejb/**"/> + <include name="org/jboss/test/timer/interfaces/**"/> + <include name="META-INF/**"/> + </fileset> + <fileset dir="${build.resources}/timer/"> + <include name="META-INF/**"/> + </fileset> + </jar> + </target> + <!--+====================================================================+--> <!--| Documents |--> @@ -2996,6 +3031,7 @@ tests-jbossmx-implementation, tests-jbossmx-performance, tests-iiop-stress, + tests-timer, tests-report"> </target> @@ -3009,6 +3045,7 @@ tests-util-unit, tests-jbossmx-compliance, tests-jbossmx-implementation, + tests-timer, tests-report"> </target> @@ -3934,6 +3971,57 @@ <fileset dir="${build.classes}"> <include name="**/test/*iiop/test/*StressTestCase.class"/> + </fileset> + </batchtest> + </junit> + </target> + + <!-- + | Standard JSR-77 tests that should run successfully against a default + | JBoss server distribution build. + --> + + <target name="tests-timer" depends="maybejars"> + <mkdir dir="${build.reports}"/> + <mkdir dir="${build.log}"/> + <junit dir="${module.output}" + printsummary="${junit.printsummary}" + haltonerror="${junit.haltonerror}" + haltonfailure="${junit.haltonfailure}" + fork="${junit.fork}" + timeout="${junit.timeout}" + jvm="${junit.jvm}"> + + <jvmarg value="${junit.jvm.options}"/> + <sysproperty key="jbosstest.deploy.dir" file="${build.lib}"/> + + <jvmarg value="-Djava.security.manager"/> + <jvmarg value="-Dsecurity.domain=test-domain"/> + <sysproperty key="java.security.policy" + value="${build.resources}/security/tst.policy"/> + <sysproperty key="java.security.auth.login.config" + value="${build.resources}/security/auth.conf"/> + <sysproperty key="build.log" value="${build.log}"/> + <sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/> + <sysproperty key="jbosstest.data.dir" value="${jbosstest.data.dir}"/> + + <classpath> + <pathelement location="${build.classes}"/> + <pathelement location="${build.resources}/security"/> + <pathelement location="${build.resources}"/> + <path refid="tests.classpath"/> + </classpath> + + <formatter classname="org.jboss.ant.taskdefs.XMLJUnitResultFormatter" + extension=".xml" usefile="${junit.formatter.usefile}"/> + + <batchtest todir="${build.reports}" + haltonerror="${junit.batchtest.haltonerror}" + haltonfailure="${junit.batchtest.haltonfailure}" + fork="${junit.batchtest.fork}"> + + <fileset dir="${build.classes}"> + <include name="**/test/timer/test/**UnitTest.class"/> </fileset> </batchtest> </junit> |
From: Bill B. <pat...@us...> - 2002-12-17 07:20:24
|
User: patriot1burke Date: 02/12/16 23:20:23 Modified: . build.xml Log: add POJOChild to aoptest.aop Revision Changes Path 1.207 +2 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.206 retrieving revision 1.207 diff -u -r1.206 -r1.207 --- build.xml 17 Dec 2002 06:34:40 -0000 1.206 +++ build.xml 17 Dec 2002 07:20:22 -0000 1.207 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.206 2002/12/17 06:34:40 stormy_sky Exp $ --> +<!-- $Id: build.xml,v 1.207 2002/12/17 07:20:22 patriot1burke Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -2115,6 +2115,7 @@ manifest="${build.etc}/manifest.mf"> <fileset dir="${build.classes}"> <include name="org/jboss/test/aop/bean/POJO.class"/> + <include name="org/jboss/test/aop/bean/POJOChild.class"/> <include name="org/jboss/test/aop/bean/SimpleInterceptor.class"/> <include name="org/jboss/test/aop/bean/SimpleInterceptorFactory.class"/> </fileset> |
From: David J. <d_j...@us...> - 2002-12-23 23:45:30
|
User: d_jencks Date: 02/12/23 15:45:29 Modified: . build.xml Log: Switch to using internally built xdoclet. This commit involves changing the xdoclet location in libraries.ent, changing many imports to fully qualified, and improving the xmbean attributes for the tm xmbeans, and incidentally building some test case ejb interfaces with xdoclet. Revision Changes Path 1.208 +22 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.207 retrieving revision 1.208 diff -u -r1.207 -r1.208 --- build.xml 17 Dec 2002 07:20:22 -0000 1.207 +++ build.xml 23 Dec 2002 23:45:27 -0000 1.208 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.207 2002/12/17 07:20:22 patriot1burke Exp $ --> +<!-- $Id: build.xml,v 1.208 2002/12/23 23:45:27 d_jencks Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -143,6 +143,8 @@ <property name="jbosstest.threadcount" value="5"/> <property name="jbosstest.beancount" value="5"/> + <property name="jbosstest.server.name" value="local"/> + <property name="jbosstest.data.dir" value="${module.output}/data"/> <!-- Classpath to build and run the tests --> @@ -203,6 +205,22 @@ <target name="compile-bean-sources" depends="init" unless="noxdoclet"> <mkdir dir="${build.gen-src}"/> + <ejbdoclet destdir="${build.gen-src}" + ejbspec="2.0" + excludedtags="@version,@author"> + <fileset dir="${source.java}"> + <include name="org/jboss/test/invokers/ejb/StatelessSpeedSessionBean.java"/> + <include name="org/jboss/test/invokers/ejb/StatelessSessionBean.java"/> + <include name="org/jboss/test/pooled/bean/StatelessSessionBean.java"/> + </fileset> + <packageSubstitution packages="ejb" substituteWith="interfaces"/> + <packageSubstitution packages="bean" substituteWith="interfaces"/> + <remoteinterface/> + <!--localinterface/--> + <homeinterface/> + <!--localhomeinterface/--> + </ejbdoclet> + <!--ejbconf--> <mkdir dir="${build.resources}/ejb-conf/readonly/META-INF"/> <ejbdoclet destdir="${build.gen-src}" @@ -605,6 +623,7 @@ <include name="org/jboss/test/jca/wrapper/*.java"/> <include name="org/jboss/test/jmx/deployer/*.java"/> <include name="org/jboss/test/jmx/mbean/*.java"/> + <include name="org/jboss/test/jmx/mbeancrashtest/*.java"/> <include name="org/jboss/test/jmx/missingclass/*.java"/> <include name="org/jboss/test/util/mbean/*.java"/> </fileset> @@ -4111,6 +4130,7 @@ <sysproperty key="jbosstest.threadcount" value="${jbosstest.threadcount}"/> <sysproperty key="jbosstest.iterationcount" value="${jbosstest.iterationcount}"/> <sysproperty key="jbosstest.beancount" value="${jbosstest.beancount}"/> + <sysproperty key="jbosstest.server.name" value="${jbosstest.server.name}"/> <classpath> @@ -4270,7 +4290,7 @@ <sysproperty key="jbosstest.threadcount" value="${jbosstest.threadcount}"/> <sysproperty key="jbosstest.iterationcount" value="${jbosstest.iterationcount}"/> <sysproperty key="jbosstest.beancount" value="${jbosstest.beancount}"/> - <sysproperty key="org.jboss.invocation.trunk.enable_nbio" value="false"/> + <sysproperty key="jbosstest.server.name" value="${jbosstest.server.name}"/> <sysproperty key="java.security.auth.login.config" value="${build.resources}/security/auth.conf"/> |
From: Alexey L. <lou...@us...> - 2002-12-26 08:27:16
|
User: loubyansky Date: 02/12/26 00:27:15 Modified: . Tag: Branch_3_2 build.xml Log: added optimistic locking tests Revision Changes Path No revision No revision 1.165.2.29 +38 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.28 retrieving revision 1.165.2.29 diff -u -r1.165.2.28 -r1.165.2.29 --- build.xml 8 Dec 2002 05:44:11 -0000 1.165.2.28 +++ build.xml 26 Dec 2002 08:27:13 -0000 1.165.2.29 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.28 2002/12/08 05:44:11 starksm Exp $ --> +<!-- $Id: build.xml,v 1.165.2.29 2002/12/26 08:27:13 loubyansky Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -563,6 +563,30 @@ Typemapping="Hypersonic SQL"/> </xdoclet> + <!-- optimistic lock test --> + <mkdir dir="${build.resources}/cmp2/optimisticlock/META-INF"/> + <xdoclet destdir="${build.gen-src}" + classpath="${xdoclet.task.classpath}" + ejbspec="2.0" + excludedtags="@version,@author" + mergedir="${source.resources}/cmp2/optimisticlock"> + <fileset dir="${source.java}"> + <include name="org/jboss/test/cmp2/optimisticlock/ejb/*Bean.java"/> + </fileset> + <packageSubstitution packages="ejb" substituteWith="interfaces"/> + <remoteinterface/> + <localinterface/> + <homeinterface/> + <localhomeinterface/> + <!-- <deploymentdescriptor xmlencoding ="UTF-8" + destdir="${build.resources}/cmp2/optimisticlock/META-INF"/> --> + <!-- <jboss xmlencoding="UTF-8" + version="3.0" + destdir="${build.resources}/cmp2/optimisticlock/META-INF" + mergedir="${source.resources}/cmp2/optimisticlock/" + Datasource="java:/DefaultDS" + Typemapping="Hypersonic SQL"/> --> + </xdoclet> <!--undeploy of broken packages--> <mkdir dir="${build.resources}/jmx/undeploy/META-INF"/> @@ -3048,6 +3072,19 @@ includes="junit/**/*.*"/> </jar> + <!-- build cmp2-optimisticlock.jar --> + <jar jarfile="${build.lib}/cmp2-optimisticlock.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/cmp2/optimisticlock/**"/> + </fileset> + <fileset dir="${build.resources}/cmp2/optimisticlock"> + <include name="**/*.*"/> + </fileset> + <zipfileset src="${junitejb.junitejb.lib}/junitejb.jar" + includes="net/**/*.*"/> + <zipfileset src="${junit.junit.lib}/junit.jar" + includes="junit/**/*.*"/> + </jar> </target> <!-- exception tests --> |
From: Adrian B. <ej...@us...> - 2002-12-28 15:33:33
|
User: ejort Date: 02/12/28 07:33:32 Modified: . build.xml Log: Entity tests Revision Changes Path 1.209 +45 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.208 retrieving revision 1.209 diff -u -r1.208 -r1.209 --- build.xml 23 Dec 2002 23:45:27 -0000 1.208 +++ build.xml 28 Dec 2002 15:33:32 -0000 1.209 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.208 2002/12/23 23:45:27 d_jencks Exp $ --> +<!-- $Id: build.xml,v 1.209 2002/12/28 15:33:32 ejort Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -609,6 +609,32 @@ mergedir="${source.resources}/timer/"/> </ejbdoclet> + <!-- entity test --> + <mkdir dir="${build.resources}/entity/META-INF"/> + <ejbdoclet destdir="${build.gen-src}" + ejbspec="2.0" + excludedtags="@version,@author" + mergedir="${source.resources}/entity"> + <fileset dir="${source.java}"> + <include name="org/jboss/test/entity/beans/*Bean.java"/> + </fileset> + <packageSubstitution packages="beans" substituteWith="interfaces"/> + <valueobject/> + <remoteinterface/> + <localinterface/> + <homeinterface/> + <localhomeinterface/> + <entitycmp/> + <utilobject kind="physical"/> + <deploymentdescriptor xmlencoding="UTF-8" + destdir="${build.resources}/entity/META-INF"/> + <jboss xmlencoding="UTF-8" + version="3.0" + datasource="java:/DefaultDS" + typemapping="Hypersonic SQL" + destdir="${build.resources}/entity/META-INF"/> + </ejbdoclet> + </target> <target name="compile-mbean-sources" depends="init" unless="noxdoclet"> @@ -733,6 +759,7 @@ <call target="_output:marathon"/> <call target="_output:classloader"/> <call target="_output:timer"/> + <call target="_output:entity"/> </parallel> </target> @@ -2977,6 +3004,23 @@ </fileset> <fileset dir="${build.resources}/timer/"> <include name="META-INF/**"/> + </fileset> + </jar> + </target> + + <!-- entity test --> + <target name="_output:entity" depends="_output:support"> + <!-- build jboss-test-entity.jar --> + <jar jarfile="${build.lib}/jboss-test-entity.jar" + manifest="${build.etc}/manifest.mf"> + <fileset dir="${build.classes}"> + <patternset refid="common.test.client.classes"/> + <include name="org/jboss/test/entity/interfaces/**"/> + <include name="org/jboss/test/entity/beans/**"/> + <include name="org/jboss/test/entity/test/**"/> + </fileset> + <fileset dir="${build.resources}/entity"> + <include name="**"/> </fileset> </jar> </target> |
From: Adrian B. <ej...@us...> - 2002-12-28 15:55:34
|
User: ejort Date: 02/12/28 07:55:33 Modified: . Tag: Branch_3_2 build.xml Log: Entity tests Revision Changes Path No revision No revision 1.165.2.30 +48 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.29 retrieving revision 1.165.2.30 diff -u -r1.165.2.29 -r1.165.2.30 --- build.xml 26 Dec 2002 08:27:13 -0000 1.165.2.29 +++ build.xml 28 Dec 2002 15:55:32 -0000 1.165.2.30 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.29 2002/12/26 08:27:13 loubyansky Exp $ --> +<!-- $Id: build.xml,v 1.165.2.30 2002/12/28 15:55:32 ejort Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -832,6 +832,33 @@ destdir="${build.resources}/jmx/loading/cpmanifest/META-INF"/> </xdoclet> + <!-- entity test --> + <mkdir dir="${build.resources}/entity/META-INF"/> + <xdoclet destdir="${build.gen-src}" + classpath="${xdoclet.task.classpath}" + ejbspec="2.0" + excludedtags="@version,@author" + mergedir="${source.resources}/entity"> + <fileset dir="${source.java}"> + <include name="org/jboss/test/entity/beans/*Bean.java"/> + </fileset> + <packageSubstitution packages="beans" substituteWith="interfaces"/> + <valueobject/> + <remoteinterface/> + <localinterface/> + <homeinterface/> + <localhomeinterface/> + <entitycmp/> + <utilobject kind="physical"/> + <deploymentdescriptor xmlencoding="UTF-8" + destdir="${build.resources}/entity/META-INF"/> + <jboss xmlencoding="UTF-8" + version="3.0" + datasource="java:/DefaultDS" + typemapping="Hypersonic SQL" + destdir="${build.resources}/entity/META-INF"/> + </xdoclet> + </target> <target name="compile-mbean-sources" depends="init" unless="noxdoclet"> @@ -1004,6 +1031,7 @@ _jars-bankiiop, _jars-hellojrmpiiop, _jars-marathon, + _jars-entity, _jars-classloader"> </target> @@ -3273,6 +3301,25 @@ <metainf dir="${source.resources}/classloader/resource" /> <fileset dir="${build.classes}"> <include name="org/jboss/test/classloader/resource/**"/> + </fileset> + </jar> + </target> + + <!-- entity test --> + <target name="_jars-entity"> + <mkdir dir="${build.lib}"/> + + <!-- build jboss-test-entity.jar --> + <jar jarfile="${build.lib}/jboss-test-entity.jar" + manifest="${build.etc}/manifest.mf"> + <fileset dir="${build.classes}"> + <patternset refid="common.test.client.classes"/> + <include name="org/jboss/test/entity/interfaces/**"/> + <include name="org/jboss/test/entity/beans/**"/> + <include name="org/jboss/test/entity/test/**"/> + </fileset> + <fileset dir="${build.resources}/entity"> + <include name="**"/> </fileset> </jar> </target> |
From: David J. <d_j...@us...> - 2002-12-30 04:52:35
|
User: d_jencks Date: 02/12/29 20:52:35 Modified: . build.xml Log: fix some jca tests to work with new deployment system. Default values are currently broken Revision Changes Path 1.210 +3 -3 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.209 retrieving revision 1.210 diff -u -r1.209 -r1.210 --- build.xml 28 Dec 2002 15:33:32 -0000 1.209 +++ build.xml 30 Dec 2002 04:52:34 -0000 1.210 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.209 2002/12/28 15:33:32 ejort Exp $ --> +<!-- $Id: build.xml,v 1.210 2002/12/30 04:52:34 d_jencks Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -1399,7 +1399,7 @@ <!-- test adapter config --> <copy todir="${build.lib}" filtering="no"> <fileset dir="${build.resources}/jca/adapter"> - <include name="testadapter-service.xml"/> + <include name="testadapter-ds.xml"/> </fileset> </copy> @@ -1465,7 +1465,7 @@ </fileset> </jar> - <!--copy the plain *-service.xml files too --> + <!--copy the plain *-ds.xml files too --> <copy todir="${build.lib}" filtering="no"> <fileset dir="${build.resources}/jca/autocommit"> <include name="*.xml"/> |
From: Scott M S. <st...@us...> - 2003-01-05 05:08:36
|
User: starksm Date: 03/01/04 21:08:36 Modified: . Tag: Branch_3_2 build.xml Log: Add jar targets for the DeadlockTests3 tests Revision Changes Path No revision No revision 1.165.2.31 +11 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.30 retrieving revision 1.165.2.31 diff -u -r1.165.2.30 -r1.165.2.31 --- build.xml 28 Dec 2002 15:55:32 -0000 1.165.2.30 +++ build.xml 5 Jan 2003 05:08:35 -0000 1.165.2.31 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.30 2002/12/28 15:55:32 ejort Exp $ --> +<!-- $Id: build.xml,v 1.165.2.31 2003/01/05 05:08:35 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -3278,6 +3278,16 @@ <fileset dir="${build.classes}"> <include name="org/jboss/test/classloader/circularity/support/Base.class"/> <include name="org/jboss/test/classloader/circularity/support/Support.class"/> + </fileset> + </jar> + <jar jarfile="${build.lib}/dl10.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/classloader/circularity/support/pkg0/Derived.class"/> + </fileset> + </jar> + <jar jarfile="${build.lib}/dl11.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/classloader/circularity/support/Base.class"/> </fileset> </jar> |
From: Scott M S. <st...@us...> - 2003-01-06 10:03:11
|
User: starksm Date: 03/01/06 02:03:10 Modified: . Tag: Branch_3_0 build.xml Log: Add jar targets for the DeadlockTests3 Revision Changes Path No revision No revision 1.106.2.61 +14 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.106.2.60 retrieving revision 1.106.2.61 diff -u -r1.106.2.60 -r1.106.2.61 --- build.xml 17 Dec 2002 00:50:17 -0000 1.106.2.60 +++ build.xml 6 Jan 2003 10:03:06 -0000 1.106.2.61 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.106.2.60 2002/12/17 00:50:17 ejort Exp $ --> +<!-- $Id: build.xml,v 1.106.2.61 2003/01/06 10:03:06 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -2468,6 +2468,9 @@ <!-- build security-spec.jar --> <jar jarfile="${build.lib}/security-spec.sar"> <metainf dir="${build.resources}/security-spec/service-inf" /> + <fileset dir="${build.resources}/security"> + <include name="tst.keystore"/> + </fileset> <fileset dir="${build.classes}"> <include name="org/jboss/test/security/service/SecurityConfig*.class"/> </fileset> @@ -2829,6 +2832,16 @@ <fileset dir="${build.classes}"> <include name="org/jboss/test/classloader/circularity/support/Base.class"/> <include name="org/jboss/test/classloader/circularity/support/Support.class"/> + </fileset> + </jar> + <jar jarfile="${build.lib}/dl10.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/classloader/circularity/support/pkg0/Derived.class"/> + </fileset> + </jar> + <jar jarfile="${build.lib}/dl11.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/classloader/circularity/support/Base.class"/> </fileset> </jar> |
From: David J. <d_j...@us...> - 2003-01-08 17:36:12
|
User: d_jencks Date: 03/01/08 09:36:08 Modified: . Tag: Branch_3_2 build.xml Log: fixed jar names from duplicate class fix in jca wrappers Revision Changes Path No revision No revision 1.165.2.32 +3 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.31 retrieving revision 1.165.2.32 diff -u -r1.165.2.31 -r1.165.2.32 --- build.xml 5 Jan 2003 05:08:35 -0000 1.165.2.31 +++ build.xml 8 Jan 2003 17:36:07 -0000 1.165.2.32 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.31 2003/01/05 05:08:35 starksm Exp $ --> +<!-- $Id: build.xml,v 1.165.2.32 2003/01/08 17:36:07 d_jencks Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -270,7 +270,8 @@ <property name="jboss.connector.lib" value="${jboss.connector.root}/lib"/> <path id="jboss.connector.classpath"> <pathelement path="${jboss.connector.lib}/jboss-jca.sar"/> - <pathelement path="${jboss.connector.lib}/local-ra-jdbc-libs.jar"/> + <pathelement path="${jboss.connector.lib}/jboss-local-jdbc.jar"/> + <pathelement path="${jboss.connector.lib}/jboss-common-jdbc-wrapper.jar"/> </path> <!-- Cluster --> |
From: Scott M S. <st...@us...> - 2003-01-12 23:03:56
|
User: starksm Date: 03/01/12 15:03:55 Modified: . Tag: Branch_3_2 build.xml Log: Include the naming security tests in the tests-security-basic-unit section Revision Changes Path No revision No revision 1.165.2.33 +4 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.32 retrieving revision 1.165.2.33 diff -u -r1.165.2.32 -r1.165.2.33 --- build.xml 8 Jan 2003 17:36:07 -0000 1.165.2.32 +++ build.xml 12 Jan 2003 23:03:52 -0000 1.165.2.33 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.32 2003/01/08 17:36:07 d_jencks Exp $ --> +<!-- $Id: build.xml,v 1.165.2.33 2003/01/12 23:03:52 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -3576,6 +3576,7 @@ <!-- do not include the dyn loading or security tests --> <exclude name="**/test/jrmp/test/DynLoadingUnitTestCase.class"/> + <exclude name="**/test/naming/test/Security*"/> <exclude name="**/test/security/test/*"/> <exclude name="**/test/securitymgr/test/*"/> @@ -3633,6 +3634,7 @@ <!-- do not include the perf, security, or iiop tests --> <!--mq test seems to break things--> <!--exclude name="**/JBossMQPerfStressTestCase.class"/--> + <exclude name="**/test/naming/test/Security*"/> <exclude name="**/test/perf/test/SecurePerfStressTestCase.class"/> <exclude name="**/test/security/test/*"/> <exclude name="**/test/securitymgr/test/*"/> @@ -3827,7 +3829,7 @@ fork="${junit.batchtest.fork}"> <fileset dir="${build.classes}"> - <exclude name="**/test/security/test/SRPUnitTestCase.class"/> + <include name="**/test/naming/test/Security*"/> <include name="**/test/security/test/**UnitTestCase.class"/> </fileset> </batchtest> |
From: Scott M S. <st...@us...> - 2003-01-15 01:20:31
|
User: starksm Date: 03/01/14 17:20:28 Modified: . Tag: Branch_3_2 build.xml Log: Update the security-srp.jar and security-srp.sar archives Revision Changes Path No revision No revision 1.165.2.34 +12 -11 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.33 retrieving revision 1.165.2.34 diff -u -r1.165.2.33 -r1.165.2.34 --- build.xml 12 Jan 2003 23:03:52 -0000 1.165.2.33 +++ build.xml 15 Jan 2003 01:20:27 -0000 1.165.2.34 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.33 2003/01/12 23:03:52 starksm Exp $ --> +<!-- $Id: build.xml,v 1.165.2.34 2003/01/15 01:20:27 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -2858,29 +2858,30 @@ </jar> <!-- build security-srp.jar and security-srp.sar --> - <jar jarfile="${build.lib}/security-srp.jar"> - <metainf dir="${build.resources}/security-srp/ejb-inf" /> + <jar jarfile="${build.lib}/security-srp.sar"> + <metainf dir="${build.resources}/security-srp/service-inf" /> <fileset dir="${build.classes}"> - <include name="org/jboss/test/security/interfaces/StatelessSession*"/> - <include name="org/jboss/test/security/ejb/StatelessSessionBean.class"/> + <include name="org/jboss/test/security/service/PropertiesVerifierStore*.class"/> + <include name="org/jboss/test/security/service/SecurityConfig*.class"/> + <include name="org/jboss/test/security/interceptors/**"/> </fileset> <fileset dir="${build.resources}/security-srp"> <include name="users.properties"/> - <include name="roles.properties"/> </fileset> </jar> - <jar jarfile="${build.lib}/security-srp.sar"> - <metainf dir="${build.resources}/security-srp/service-inf" /> + <jar jarfile="${build.lib}/security-srp.jar"> + <metainf dir="${build.resources}/security-srp/ejb-inf" /> <fileset dir="${build.classes}"> - <include name="org/jboss/test/security/service/**"/> - <include name="org/jboss/test/security/interceptors/**"/> + <include name="org/jboss/test/security/interfaces/StatelessSession*"/> + <include name="org/jboss/test/security/ejb/StatelessSessionBean.class"/> </fileset> <fileset dir="${build.resources}/security-srp"> <include name="users.properties"/> + <include name="roles.properties"/> </fileset> <fileset dir="${build.lib}"> - <include name="security-srp.jar"/> + <include name="security-srp.sar"/> </fileset> </jar> |
From: Bill B. <pat...@us...> - 2003-01-16 05:20:17
|
User: patriot1burke Date: 03/01/15 21:20:17 Modified: . build.xml Log: - you can add interceptors to an instance at runtime - instance metadata - expanded testsuite Revision Changes Path 1.211 +3 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.210 retrieving revision 1.211 diff -u -r1.210 -r1.211 --- build.xml 30 Dec 2002 04:52:34 -0000 1.210 +++ build.xml 16 Jan 2003 05:20:16 -0000 1.211 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.210 2002/12/30 04:52:34 d_jencks Exp $ --> +<!-- $Id: build.xml,v 1.211 2003/01/16 05:20:16 patriot1burke Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -2178,6 +2178,8 @@ <fileset dir="${build.classes}"> <include name="org/jboss/test/aop/bean/AOPTester.class"/> <include name="org/jboss/test/aop/bean/AOPTesterMBean.class"/> + <include name="org/jboss/test/aop/bean/BeforeInterceptor.class"/> + <include name="org/jboss/test/aop/bean/AfterInterceptor.class"/> </fileset> <fileset dir="${build.resources}/aop"> <include name="**/jboss-service.xml"/> |
From: Scott M S. <st...@us...> - 2003-01-17 09:32:56
|
User: starksm Date: 03/01/17 01:32:55 Modified: . build.xml Log: Update the classloader test targets Revision Changes Path 1.212 +59 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.211 retrieving revision 1.212 diff -u -r1.211 -r1.212 --- build.xml 16 Jan 2003 05:20:16 -0000 1.211 +++ build.xml 17 Jan 2003 09:32:55 -0000 1.212 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.211 2003/01/16 05:20:16 patriot1burke Exp $ --> +<!-- $Id: build.xml,v 1.212 2003/01/17 09:32:55 starksm Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -2963,12 +2963,70 @@ </jar> <!-- build circularity.sar --> + <jar jarfile="${build.lib}/j0.jar" basedir="${build.classes}" + includes="org/jboss/test/classloader/circularity/support/Class0.class"/> + <jar jarfile="${build.lib}/j1.jar" basedir="${build.classes}" + includes="org/jboss/test/classloader/circularity/support/Class1.class"/> + <jar jarfile="${build.lib}/j2.jar" basedir="${build.classes}" + includes="org/jboss/test/classloader/circularity/support/Class2.class"/> + <jar jarfile="${build.lib}/j3.jar" basedir="${build.classes}" + includes="org/jboss/test/classloader/circularity/support/Derived.class"/> + <jar jarfile="${build.lib}/any0.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/classloader/circularity/support/Base.class"/> + <include name="org/jboss/test/classloader/circularity/support/Class0.class"/> + <include name="org/jboss/test/classloader/circularity/support/Class2.class"/> + </fileset> + </jar> + <jar jarfile="${build.lib}/any1.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/classloader/circularity/support/Class0.class"/> + <include name="org/jboss/test/classloader/circularity/support/Class2.cla +ss"/> + </fileset> + </jar> + <jar jarfile="${build.lib}/login.jar" basedir="${build.classes}" + manifest="${source.resources}/classloader/circularity/to-cl-util.mf" + includes="org/jboss/test/classloader/circularity/support/UserOfLoginInfo.class"/> + <jar jarfile="${build.lib}/usrmgr.jar" basedir="${build.classes}" + manifest="${source.resources}/classloader/circularity/to-cl-util.mf" + includes="org/jboss/test/classloader/circularity/support/UserOfUsrMgr.class"/> + <jar jarfile="${build.lib}/cl-util.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/classloader/circularity/support/LoginInfo.class"/> + <include name="org/jboss/test/classloader/circularity/support/UsrMgr.class"/> + </fileset> + </jar> + <jar jarfile="${build.lib}/le0.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/classloader/circularity/support/Base.class"/> + <include name="org/jboss/test/classloader/circularity/support/UserOfBase.class"/> + </fileset> + </jar> + <jar jarfile="${build.lib}/le1.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/classloader/circularity/support/Base.class"/> + <include name="org/jboss/test/classloader/circularity/support/Support.class"/> + </fileset> + </jar> + <jar jarfile="${build.lib}/dl10.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/classloader/circularity/support/pkg0/Derived.class"/> + </fileset> + </jar> + <jar jarfile="${build.lib}/dl11.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/classloader/circularity/support/Base.class"/> + </fileset> + </jar> + <jar jarfile="${build.lib}/circularity.sar"> <metainf dir="${source.resources}/classloader/circularity" /> <fileset dir="${build.classes}"> <include name="org/jboss/test/classloader/circularity/**"/> </fileset> </jar> + <!-- build interrupt.sar --> <jar jarfile="${build.lib}/interrupt.sar"> |
From: Bill B. <pat...@us...> - 2003-01-18 06:01:08
|
User: patriot1burke Date: 03/01/17 22:00:33 Modified: . build.xml Log: full field interception intra class and inter class testing Revision Changes Path 1.213 +3 -4 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.212 retrieving revision 1.213 diff -u -r1.212 -r1.213 --- build.xml 17 Jan 2003 09:32:55 -0000 1.212 +++ build.xml 18 Jan 2003 06:00:31 -0000 1.213 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.212 2003/01/17 09:32:55 starksm Exp $ --> +<!-- $Id: build.xml,v 1.213 2003/01/18 06:00:31 patriot1burke Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -2160,8 +2160,7 @@ <jar jarfile="${build.lib}/aoptest.aop" manifest="${build.etc}/manifest.mf"> <fileset dir="${build.classes}"> - <include name="org/jboss/test/aop/bean/POJO.class"/> - <include name="org/jboss/test/aop/bean/POJOChild.class"/> + <include name="org/jboss/test/aop/bean/POJO*.class"/> <include name="org/jboss/test/aop/bean/SimpleInterceptor.class"/> <include name="org/jboss/test/aop/bean/SimpleInterceptorFactory.class"/> </fileset> @@ -4212,7 +4211,7 @@ | name in -Dtest=dirname in tests/dirname/test/**TestCase.class --> - <target name="test" depends="maybejars" if="test" + <target name="test" depends="init" if="test" description="Execute a single test."> <mkdir dir="${build.reports}"/> <mkdir dir="${build.log}"/> |
From: Scott M S. <st...@us...> - 2003-01-18 11:25:25
|
User: starksm Date: 03/01/18 03:25:25 Modified: . Tag: Branch_3_2 build.xml Log: Place the loadingresource.sar in an ear and add a test of accessing resources from the ear root Revision Changes Path No revision No revision 1.165.2.35 +22 -7 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.34 retrieving revision 1.165.2.35 diff -u -r1.165.2.34 -r1.165.2.35 --- build.xml 15 Jan 2003 01:20:27 -0000 1.165.2.34 +++ build.xml 18 Jan 2003 11:25:24 -0000 1.165.2.35 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.34 2003/01/15 01:20:27 starksm Exp $ --> +<!-- $Id: build.xml,v 1.165.2.35 2003/01/18 11:25:24 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -1707,7 +1707,7 @@ <fileset dir="${build.classes}"> <include name="org/jboss/test/jca/adapter/**"/> </fileset> - </jar> + </jar> <jar jarfile="${build.lib}/jbosstestadapter.rar"> <fileset dir="${build.lib}"> @@ -1716,7 +1716,7 @@ <fileset dir="${build.resources}/jca/adapter"> <include name="META-INF/ra.xml"/> </fileset> - </jar> + </jar> <!-- test adapter config --> <copy todir="${build.lib}" filtering="no"> @@ -1724,7 +1724,7 @@ <include name="testadapter-service.xml"/> </fileset> </copy> - + <!-- build jcatest.jar --> <jar jarfile="${build.lib}/jcatest.jar"> @@ -3310,11 +3310,26 @@ <!-- build loadingresource.sar --> <jar jarfile="${build.lib}/loadingresource.sar"> - <metainf dir="${source.resources}/classloader/resource" /> + <metainf dir="${source.resources}/classloader/resource"> + <include name="jboss-service.xml" /> + </metainf> <fileset dir="${build.classes}"> <include name="org/jboss/test/classloader/resource/**"/> </fileset> </jar> + + <ear earfile="${build.lib}/loadingresource.ear" + appxml="${build.resources}/classloader/resource/application.xml"> + <metainf dir="${build.resources}/classloader/resource"> + <include name="jboss-app.xml" /> + </metainf> + <fileset dir="${build.resources}/classloader/resource"> + <include name="dtds/*" /> + </fileset> + <fileset dir="${build.lib}"> + <include name="loadingresource.sar" /> + </fileset> + </ear> </target> <!-- entity test --> @@ -4370,7 +4385,7 @@ --> <target name="tests-db" depends="init, run-db-tests, tests-report-html"/> - + <target name="run-db-tests" depends="maybejars"> <mkdir dir="${build.reports}"/> <mkdir dir="${build.testlog}"/> @@ -4417,7 +4432,7 @@ </junit> </target> - + <!-- | Run testcases in a single directory by specifing the test directory |
From: Scott M S. <st...@us...> - 2003-01-18 11:50:33
|
User: starksm Date: 03/01/18 03:50:32 Modified: . Tag: Branch_3_0 build.xml Log: Place the loadingresource.sar in an ear and add a test of accessing resources from the ear root Revision Changes Path No revision No revision 1.106.2.62 +17 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.106.2.61 retrieving revision 1.106.2.62 diff -u -r1.106.2.61 -r1.106.2.62 --- build.xml 6 Jan 2003 10:03:06 -0000 1.106.2.61 +++ build.xml 18 Jan 2003 11:50:31 -0000 1.106.2.62 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.106.2.61 2003/01/06 10:03:06 starksm Exp $ --> +<!-- $Id: build.xml,v 1.106.2.62 2003/01/18 11:50:31 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -2864,11 +2864,26 @@ <!-- build loadingresource.sar --> <jar jarfile="${build.lib}/loadingresource.sar"> - <metainf dir="${source.resources}/classloader/resource" /> + <metainf dir="${source.resources}/classloader/resource"> + <include name="jboss-service.xml" /> + </metainf> <fileset dir="${build.classes}"> <include name="org/jboss/test/classloader/resource/**"/> </fileset> </jar> + + <ear earfile="${build.lib}/loadingresource.ear" + appxml="${build.resources}/classloader/resource/application.xml"> + <metainf dir="${build.resources}/classloader/resource"> + <include name="jboss-app.xml" /> + </metainf> + <fileset dir="${build.resources}/classloader/resource"> + <include name="dtds/*" /> + </fileset> + <fileset dir="${build.lib}"> + <include name="loadingresource.sar" /> + </fileset> + </ear> </target> <!-- entity test --> |
From: Scott M S. <st...@us...> - 2003-01-18 12:02:00
|
User: starksm Date: 03/01/18 04:01:58 Modified: . build.xml Log: Place the loadingresource.sar in an ear and add a test of accessing resources from the ear root Revision Changes Path 1.214 +19 -4 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.213 retrieving revision 1.214 diff -u -r1.213 -r1.214 --- build.xml 18 Jan 2003 06:00:31 -0000 1.213 +++ build.xml 18 Jan 2003 12:01:57 -0000 1.214 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.213 2003/01/18 06:00:31 patriot1burke Exp $ --> +<!-- $Id: build.xml,v 1.214 2003/01/18 12:01:57 starksm Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -3037,14 +3037,29 @@ <!-- build loadingresource.sar --> <jar jarfile="${build.lib}/loadingresource.sar"> - <metainf dir="${source.resources}/classloader/resource" /> + <metainf dir="${source.resources}/classloader/resource"> + <include name="jboss-service.xml" /> + </metainf> <fileset dir="${build.classes}"> <include name="org/jboss/test/classloader/resource/**"/> </fileset> </jar> - <!-- build loadingresource.ear --> - <jar jarfile="${build.lib}/loadingresource.ear"> + <ear earfile="${build.lib}/loadingresource.ear" + appxml="${build.resources}/classloader/resource/application.xml"> + <metainf dir="${build.resources}/classloader/resource"> + <include name="jboss-app.xml" /> + </metainf> + <fileset dir="${build.resources}/classloader/resource"> + <include name="dtds/*" /> + </fileset> + <fileset dir="${build.lib}"> + <include name="loadingresource.sar" /> + </fileset> + </ear> + + <!-- build hloadingresource.ear --> + <jar jarfile="${build.lib}/hloadingresource.ear"> <metainf dir="${source.resources}/classloader/heirarchicalresource" /> <fileset dir="${build.lib}"> <include name="loadingresource.sar"/> |
From: Scott M S. <st...@us...> - 2003-01-21 02:45:18
|
User: starksm Date: 03/01/20 18:45:17 Modified: . build.xml Log: - Set the default timeout to 3 mins - Update the tests report to created an html archive time stamped with the run time - Change the results web site location Revision Changes Path 1.215 +16 -4 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.214 retrieving revision 1.215 diff -u -r1.214 -r1.215 --- build.xml 18 Jan 2003 12:01:57 -0000 1.214 +++ build.xml 21 Jan 2003 02:45:16 -0000 1.215 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.214 2003/01/18 12:01:57 starksm Exp $ --> +<!-- $Id: build.xml,v 1.215 2003/01/21 02:45:16 starksm Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -50,6 +50,11 @@ <target name="init" depends="_default:init"> <!-- Add module specific elements here. --> + <tstamp> + <format property="TIMENOW" pattern="yyyy-MM-dd.HH-mm" timezone="GMT"/> + </tstamp> + <echo message="${TIMENOW}" file="run.tstamp" /> + <echo message="Set timestamp to: ${TIMENOW}" /> </target> @@ -128,7 +133,7 @@ <!--+=======================================+--> <!-- Override JUnit defaults --> - <property name="junit.timeout" value="1200000"/> <!-- 20 minutes --> + <property name="junit.timeout" value="180000"/> <!-- 3 minutes --> <property name="junit.batchtest.todir" value="${build.reports}"/> <!-- Configure defaults & build tools --> @@ -4442,7 +4447,13 @@ <delete dir="${build.reports}"/> </target> - <target name="tests-report" depends="tests-report-html, tests-report-text"/> + <target name="tests-report" depends="tests-report-html, tests-report-text"> + <tar tarfile="${module.output}/${TIMENOW}.tgz" compression="gzip" longfile="gnu"> + <tarfileset dir="${build.reports}/html" prefix="${TIMENOW}"> + <include name="**"/> + </tarfileset> + </tar> + </target> <target name="tests-report-html" depends="_default:compile-stylesheets"> <mkdir dir="${build.reports}/html"/> @@ -4491,7 +4502,8 @@ <param name="os_name" expression="${os.name}"/> <param name="os_arch" expression="${os.arch}"/> <param name="os_version" expression="${os.version}"/> - <param name="builduid" expression="${build.uid}"/> + <param name="builduid" expression="${TIMENOW}"/> + <param name="results_web" expression="http://users.jboss.org/~starksm/HEAD"/> </style> </target> |
From: Bill B. <pat...@us...> - 2003-01-22 17:32:42
|
User: patriot1burke Date: 03/01/22 09:32:41 Modified: . build.xml Log: Moved method hashing to its own static class in org.jboss.util.MethodHashing in the common library. Revision Changes Path 1.216 +2 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.215 retrieving revision 1.216 diff -u -r1.215 -r1.216 --- build.xml 21 Jan 2003 02:45:16 -0000 1.215 +++ build.xml 22 Jan 2003 17:32:39 -0000 1.216 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.215 2003/01/21 02:45:16 starksm Exp $ --> +<!-- $Id: build.xml,v 1.216 2003/01/22 17:32:39 patriot1burke Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -4231,7 +4231,7 @@ | name in -Dtest=dirname in tests/dirname/test/**TestCase.class --> - <target name="test" depends="init" if="test" + <target name="test" depends="maybejars" if="test" description="Execute a single test."> <mkdir dir="${build.reports}"/> <mkdir dir="${build.log}"/> |
From: Alexey L. <lou...@us...> - 2003-02-02 14:38:59
|
User: loubyansky Date: 03/02/02 06:38:57 Modified: . Tag: Branch_3_2 build.xml Log: changed foe-deployer.sar to foe-deployer-3.2.sar and added QL test Revision Changes Path No revision No revision 1.165.2.36 +12 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.35 retrieving revision 1.165.2.36 diff -u -r1.165.2.35 -r1.165.2.36 --- build.xml 18 Jan 2003 11:25:24 -0000 1.165.2.35 +++ build.xml 2 Feb 2003 14:38:56 -0000 1.165.2.36 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.35 2003/01/18 11:25:24 starksm Exp $ --> +<!-- $Id: build.xml,v 1.165.2.36 2003/02/02 14:38:56 loubyansky Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -2955,7 +2955,7 @@ <echo>${project.root}</echo> <copy todir="${build.lib}" filtering="no"> <fileset dir="${project.root}/varia/output/lib"> - <include name="foe-deployer.sar"/> + <include name="foe-deployer-3.2.sar"/> </fileset> </copy> @@ -2995,6 +2995,16 @@ <include name="org/jboss/test/foedeployer/ejb/m2mb/**"/> </fileset> <fileset dir="${build.resources}/foedeployer/m2mb/"> + <include name="META-INF/**"/> + </fileset> + </jar> + + <!-- build foe-deployer-ql-test.wlar --> + <jar jarfile="${build.lib}/foe-deployer-ql-test.wlar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/foedeployer/ejb/ql/**"/> + </fileset> + <fileset dir="${build.resources}/foedeployer/ql/"> <include name="META-INF/**"/> </fileset> </jar> |
From: Scott M S. <st...@us...> - 2003-02-05 05:17:29
|
User: starksm Date: 03/02/04 21:17:28 Modified: . Tag: Branch_3_2 build.xml Log: Reduce the default timeout to 3 minutes Revision Changes Path No revision No revision 1.165.2.37 +2 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.36 retrieving revision 1.165.2.37 diff -u -r1.165.2.36 -r1.165.2.37 --- build.xml 2 Feb 2003 14:38:56 -0000 1.165.2.36 +++ build.xml 5 Feb 2003 05:17:27 -0000 1.165.2.37 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.36 2003/02/02 14:38:56 loubyansky Exp $ --> +<!-- $Id: build.xml,v 1.165.2.37 2003/02/05 05:17:27 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -402,7 +402,7 @@ <property name="javadoc.packages" value="org.jboss.*"/> <!-- Override JUnit defaults --> - <property name="junit.timeout" value="1200000"/> <!-- 20 minutes --> + <property name="junit.timeout" value="180000"/> <!-- 3 minutes --> <property name="jbosstest.iterationcount" value="10"/> <property name="jbosstest.threadcount" value="5"/> <property name="jbosstest.beancount" value="5"/> |
From: Scott M S. <st...@us...> - 2003-02-09 05:54:31
|
User: starksm Date: 03/02/08 21:54:30 Modified: . Tag: Branch_3_2 build.xml Log: Add the jbosstest.nodeploy property to the one-test junit test to allow running a test without deploying the test jar Revision Changes Path No revision No revision 1.165.2.38 +3 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.37 retrieving revision 1.165.2.38 diff -u -r1.165.2.37 -r1.165.2.38 --- build.xml 5 Feb 2003 05:17:27 -0000 1.165.2.37 +++ build.xml 9 Feb 2003 05:54:29 -0000 1.165.2.38 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.37 2003/02/05 05:17:27 starksm Exp $ --> +<!-- $Id: build.xml,v 1.165.2.38 2003/02/09 05:54:29 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -406,6 +406,7 @@ <property name="jbosstest.iterationcount" value="10"/> <property name="jbosstest.threadcount" value="5"/> <property name="jbosstest.beancount" value="5"/> + <property name="jbosstest.nodeploy" value="false"/> <property name="junit.batchtest.todir" value="${build.reports}"/> <property name="junit.jvm.options" value="-Ddummy"/> <!-- Override JUnit Marathon defaults --> @@ -4625,6 +4626,7 @@ <sysproperty key="jbosstest.threadcount" value="${jbosstest.threadcount}"/> <sysproperty key="jbosstest.iterationcount" value="${jbosstest.iterationcount}"/> <sysproperty key="jbosstest.beancount" value="${jbosstest.beancount}"/> + <sysproperty key="jbosstest.nodeploy" value="${jbosstest.nodeploy}"/> <sysproperty key="java.security.auth.login.config" value="${build.resources}/security/auth.xml"/> |
From: Scott M S. <st...@us...> - 2003-02-12 16:05:28
|
User: starksm Date: 03/02/12 08:05:25 Modified: . Tag: Branch_3_2 build.xml Log: The JAAS login config file used by clients needs to be the Sun default config format so that when running with the default JDK1.4 implementation the test does not need to replace the Configuration implementation Revision Changes Path No revision No revision 1.165.2.39 +12 -12 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.38 retrieving revision 1.165.2.39 diff -u -r1.165.2.38 -r1.165.2.39 --- build.xml 9 Feb 2003 05:54:29 -0000 1.165.2.38 +++ build.xml 12 Feb 2003 16:05:20 -0000 1.165.2.39 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.38 2003/02/09 05:54:29 starksm Exp $ --> +<!-- $Id: build.xml,v 1.165.2.39 2003/02/12 16:05:20 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -3741,7 +3741,7 @@ <sysproperty key="java.security.policy" value="${build.resources}/security/tst.policy"/> <sysproperty key="java.security.auth.login.config" - value="${build.resources}/security/auth.xml"/> + value="${build.resources}/security/auth.conf"/> <classpath> <pathelement path="${build.lib}/jrmp-dl-client.jar"/> @@ -3782,7 +3782,7 @@ <sysproperty key="java.security.policy" value="${build.resources}/security/tst.policy"/> <sysproperty key="java.security.auth.login.config" - value="${build.resources}/security/auth.xml"/> + value="${build.resources}/security/auth.conf"/> <sysproperty key="build.testlog" value="${build.testlog}"/> <sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/> <sysproperty key="jbosstest.threadcount" value="${jbosstest.threadcount}"/> @@ -3836,7 +3836,7 @@ <sysproperty key="java.security.policy" value="${build.resources}/security/tst.policy"/> <sysproperty key="java.security.auth.login.config" - value="${build.resources}/security/auth.xml"/> + value="${build.resources}/security/auth.conf"/> <sysproperty key="build.testlog" value="${build.testlog}"/> <sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/> @@ -3882,7 +3882,7 @@ <sysproperty key="java.security.policy" value="${build.resources}/security/tst.policy"/> <sysproperty key="java.security.auth.login.config" - value="${build.resources}/security/auth.xml"/> + value="${build.resources}/security/auth.conf"/> <sysproperty key="build.testlog" value="${build.testlog}"/> <sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/> <sysproperty key="jbosstest.threadcount" value="${jbosstest.threadcount}"/> @@ -3938,7 +3938,7 @@ <sysproperty key="jboss.tools.dir" file="${project.root}/tools"/> <sysproperty key="jbosstest.deploy.dir" file="${build.lib}"/> <sysproperty key="java.security.auth.login.config" - value="${build.resources}/security/auth.xml"/> + value="${build.resources}/security/auth.conf"/> <sysproperty key="build.testlog" value="${build.testlog}"/> <sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/> @@ -3988,7 +3988,7 @@ <sysproperty key="jboss.tools.dir" file="${project.root}/tools"/> <sysproperty key="jbosstest.deploy.dir" file="${build.lib}"/> <sysproperty key="java.security.auth.login.config" - value="${build.resources}/security/auth.xml"/> + value="${build.resources}/security/auth.conf"/> <sysproperty key="build.testlog" value="${build.testlog}"/> <sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/> @@ -4031,7 +4031,7 @@ <sysproperty key="java.security.policy" value="${build.resources}/security/tst.policy"/> <sysproperty key="java.security.auth.login.config" - value="${build.resources}/security/auth.xml"/> + value="${build.resources}/security/auth.conf"/> <sysproperty key="build.testlog" value="${build.testlog}"/> <sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/> @@ -4081,7 +4081,7 @@ <sysproperty key="java.security.policy" value="${build.resources}/security/tst.policy"/> <sysproperty key="java.security.auth.login.config" - value="${build.resources}/security/auth.xml"/> + value="${build.resources}/security/auth.conf"/> <sysproperty key="build.testlog" value="${build.testlog}"/> <sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/> <sysproperty key="jbosstest.duration" value="${marathon.duration}" /> @@ -4135,7 +4135,7 @@ <sysproperty key="java.security.policy" value="${build.resources}/security/tst.policy"/> <sysproperty key="java.security.auth.login.config" - value="${build.resources}/security/auth.xml"/> + value="${build.resources}/security/auth.conf"/> <sysproperty key="build.testlog" value="${build.testlog}"/> <sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/> @@ -4185,7 +4185,7 @@ <sysproperty key="java.security.policy" value="${build.resources}/security/tst.policy"/> <sysproperty key="java.security.auth.login.config" - value="${build.resources}/security/auth.xml"/> + value="${build.resources}/security/auth.conf"/> <sysproperty key="build.testlog" value="${build.testlog}"/> <sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/> @@ -4628,7 +4628,7 @@ <sysproperty key="jbosstest.beancount" value="${jbosstest.beancount}"/> <sysproperty key="jbosstest.nodeploy" value="${jbosstest.nodeploy}"/> <sysproperty key="java.security.auth.login.config" - value="${build.resources}/security/auth.xml"/> + value="${build.resources}/security/auth.conf"/> <classpath> <pathelement location="${build.classes}"/> |
From: Adrian B. <ej...@us...> - 2003-02-13 04:17:03
|
User: ejort Date: 03/02/12 20:17:03 Modified: . Tag: Branch_3_2 build.xml Log: Tests for container managed audit fields Revision Changes Path No revision No revision 1.165.2.40 +11 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.39 retrieving revision 1.165.2.40 diff -u -r1.165.2.39 -r1.165.2.40 --- build.xml 12 Feb 2003 16:05:20 -0000 1.165.2.39 +++ build.xml 13 Feb 2003 04:17:02 -0000 1.165.2.40 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.39 2003/02/12 16:05:20 starksm Exp $ --> +<!-- $Id: build.xml,v 1.165.2.40 2003/02/13 04:17:02 ejort Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -3125,6 +3125,16 @@ includes="net/**/*.*"/> <zipfileset src="${junit.junit.lib}/junit.jar" includes="junit/**/*.*"/> + </jar> + + <!-- build cmp2-audit.jar --> + <jar jarfile="${build.lib}/cmp2-audit.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/cmp2/audit/**"/> + </fileset> + <fileset dir="${build.resources}/cmp2/audit"> + <include name="**/*.*"/> + </fileset> </jar> </target> |