From: Hiram C. <ch...@us...> - 2002-04-21 21:15:18
|
User: chirino Date: 02/04/21 14:15:17 Modified: . build.xml Log: Adding the JORAM JMS testsuite to our testsuite so that we have better JBossMQ tests. Revision Changes Path 1.111 +44 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.110 retrieving revision 1.111 diff -u -r1.110 -r1.111 --- build.xml 20 Apr 2002 19:31:05 -0000 1.110 +++ build.xml 21 Apr 2002 21:15:17 -0000 1.111 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.110 2002/04/20 19:31:05 reverbel Exp $ --> +<!-- $Id: build.xml,v 1.111 2002/04/21 21:15:17 chirino Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -3124,6 +3124,49 @@ </junit> </target> + <!-- + | Run the JORAM JMS testsuite against JBossMQ + --> + <target name="tests-objectweb-jms" depends="maybejars"> + <mkdir dir="${build.reports}"/> + <mkdir dir="${build.testlog}"/> + <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}"/> + <sysproperty key="build.testlog" value="${build.testlog}"/> + <sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/> + <sysproperty key="jbosstest.threadcount" value="${jbosstest.threadcount}"/> + <sysproperty key="jbosstest.iterationcount" value="${jbosstest.iterationcount}"/> + <sysproperty key="jbosstest.beancount" value="${jbosstest.beancount}"/> + + <classpath> + <pathelement location="${build.classes}"/> + <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="org/objectweb/jtests/**/*Test.class"/> + </fileset> + </batchtest> + </junit> + </target> + <!-- | Run a single testcase by specifing the fully qualified class name | of the unit test using the test property, -Dtest=org.jboss.test.... |
From: Francisco R. <rev...@us...> - 2002-04-23 23:53:30
|
User: reverbel Date: 02/04/23 16:53:29 Modified: . build.xml Log: - JacORB verbosity set to zero on iiop testcases. - Target iiop-test now creates a test.log file. Revision Changes Path 1.112 +7 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.111 retrieving revision 1.112 diff -u -r1.111 -r1.112 --- build.xml 21 Apr 2002 21:15:17 -0000 1.111 +++ build.xml 23 Apr 2002 23:53:29 -0000 1.112 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.111 2002/04/21 21:15:17 chirino Exp $ --> +<!-- $Id: build.xml,v 1.112 2002/04/23 23:53:29 reverbel Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -2990,6 +2990,8 @@ <jvmarg value="${junit.jvm.options}"/> <jvmarg value="-Dorg.omg.CORBA.ORBClass=org.jacorb.orb.ORB"/> <jvmarg value="-Dorg.omg.CORBA.ORBSingletonClass=org.jacorb.orb.ORBSingleton"/> + <jvmarg value="-Djacorb.orb.print_version=off"/> + <sysproperty key="jacorb.verbosity" value="0"/> <jvmarg value="-Djava.security.manager"/> <sysproperty key="java.security.policy" value="${build.resources}/security/tst.policy"/> @@ -3092,9 +3094,13 @@ <jvmarg value="${junit.jvm.options}"/> <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"/> <jvmarg value="-Dorg.omg.CORBA.ORBClass=org.jacorb.orb.ORB"/> <jvmarg value="-Dorg.omg.CORBA.ORBSingletonClass=org.jacorb.orb.ORBSingleton"/> + <jvmarg value="-Djacorb.verbosity=0"/> + <jvmarg value="-Djacorb.orb.print_version=off"/> <jvmarg value="-Djava.security.manager"/> <jvmarg value="-Djava.security.policy==${build.resources}/${test}/client.policy"/> <sysproperty key="log4j.properties" file="${build.resources}/log4j.properties"/> |
From: David J. <d_j...@us...> - 2002-04-26 05:55:20
|
User: d_jencks Date: 02/04/25 22:55:19 Modified: . build.xml Log: removed code duplication and fixed configuration so tests pass Revision Changes Path 1.113 +2 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.112 retrieving revision 1.113 diff -u -r1.112 -r1.113 --- build.xml 23 Apr 2002 23:53:29 -0000 1.112 +++ build.xml 26 Apr 2002 05:55:18 -0000 1.113 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.112 2002/04/23 23:53:29 reverbel Exp $ --> +<!-- $Id: build.xml,v 1.113 2002/04/26 05:55:18 d_jencks Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -1738,7 +1738,7 @@ <include name="org/jboss/test/perf/interfaces/**"/> <include name="org/jboss/test/perf/ejb/**"/> </fileset> - <metainf dir="${build.resources}/perf/META-INF" /> + <metainf dir="${build.resources}/secure-perf/META-INF" /> <fileset dir="${build.resources}/secure-perf"> <include name="users.properties"/> <include name="roles.properties"/> |
From: Scott M S. <st...@us...> - 2002-04-26 17:33:39
|
User: starksm Date: 02/04/26 10:30:36 Modified: . Tag: Branch_3_0 build.xml Log: Fix the screwed up jrmp-dl.jar construction Revision Changes Path No revision No revision 1.106.2.4 +8 -10 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.106.2.3 retrieving revision 1.106.2.4 diff -u -r1.106.2.3 -r1.106.2.4 --- build.xml 18 Apr 2002 23:16:56 -0000 1.106.2.3 +++ build.xml 26 Apr 2002 17:30:35 -0000 1.106.2.4 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.106.2.3 2002/04/18 23:16:56 starksm Exp $ --> +<!-- $Id: build.xml,v 1.106.2.4 2002/04/26 17:30:35 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -1559,16 +1559,14 @@ </jar> <!-- build jrmp-dl.jar --> - <jar jarfile="${build.lib}/jrmp-dl.jar" - manifest="${build.etc}/manifest.mf"> + <jar jarfile="${build.lib}/jrmp-dl.jar"> + <metainf dir="${build.resources}/jrmp/META-INF"> + <exclude name="jboss.xml" /> + </metainf> <fileset dir="${build.classes}"> - <patternset refid="common.test.application.classes"/> <include name="org/jboss/test/jrmp/interfaces/**"/> <include name="org/jboss/test/jrmp/ejb/**"/> </fileset> - <fileset dir="${build.resources}/jrmp"> - <include name="**/*.xml"/> - </fileset> </jar> </target> @@ -1591,7 +1589,6 @@ <!-- build threadingBean.jar --> <jar jarfile="${build.lib}/threadingBean.jar"> <fileset dir="${build.classes}"> - <patternset refid="common.test.application.classes"/> <include name="org/jboss/test/threading/interfaces/**"/> <include name="org/jboss/test/threading/ejb/**"/> </fileset> @@ -1793,11 +1790,12 @@ <jar jarfile="${build.lib}/jbosstest-web-ejbs.jar"> <fileset dir="${build.classes}"> <patternset refid="common.test.application.classes"/> - <include name="org/jboss/test/web/interfaces/**"/> <include name="org/jboss/test/web/ejb/**"/> + <include name="org/jboss/test/web/interfaces/**"/> </fileset> <fileset dir="${build.resources}/web"> - <include name="**/*.xml"/> + <include name="META-INF/ejb-jar.xml"/> + <include name="META-INF/jboss.xml"/> <include name="users.properties"/> <include name="roles.properties"/> </fileset> |
From: Scott M S. <st...@us...> - 2002-04-26 17:33:56
|
User: starksm Date: 02/04/26 10:33:55 Modified: . build.xml Log: Fix the screwed up jrmp-dl.jar construction. Revision Changes Path 1.114 +5 -7 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.113 retrieving revision 1.114 diff -u -r1.113 -r1.114 --- build.xml 26 Apr 2002 05:55:18 -0000 1.113 +++ build.xml 26 Apr 2002 17:33:55 -0000 1.114 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.113 2002/04/26 05:55:18 d_jencks Exp $ --> +<!-- $Id: build.xml,v 1.114 2002/04/26 17:33:55 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -1559,15 +1559,13 @@ </jar> <!-- build jrmp-dl.jar --> - <jar jarfile="${build.lib}/jrmp-dl.jar" - manifest="${build.etc}/manifest.mf"> + <jar jarfile="${build.lib}/jrmp-dl.jar"> + <metainf dir="${build.resources}/jrmp/META-INF"> + <exclude name="jboss.xml" /> + </metainf> <fileset dir="${build.classes}"> - <patternset refid="common.test.application.classes"/> <include name="org/jboss/test/jrmp/interfaces/**"/> <include name="org/jboss/test/jrmp/ejb/**"/> - </fileset> - <fileset dir="${build.resources}/jrmp"> - <include name="**/*.xml"/> </fileset> </jar> </target> |
From: Francisco R. <rev...@us...> - 2002-04-26 17:50:56
|
User: reverbel Date: 02/04/26 10:50:54 Modified: . Tag: Branch_3_0 build.xml Log: Changes merged from HEAD: - IIOP tests excluded from tests-standard-stress. - Created target tests-iiop-stress. - Targets tests and tests-stress now depend on tests-iiop-stress. - JacORB verbosity set to zero on iiop testcases. - Target iiop-test now creates a test.log file. Revision Changes Path No revision No revision 1.106.2.5 +62 -3 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.106.2.4 retrieving revision 1.106.2.5 diff -u -r1.106.2.4 -r1.106.2.5 --- build.xml 26 Apr 2002 17:30:35 -0000 1.106.2.4 +++ build.xml 26 Apr 2002 17:50:54 -0000 1.106.2.5 @@ -2301,6 +2301,7 @@ tests-client-unit, tests-security-basic-unit, tests-standard-stress, + tests-iiop-stress, tests-client-stress, tests-security-basic-stress, tests-jsr77-unit, @@ -2326,7 +2327,8 @@ <target name="tests-stress" description="Execute all stress tests." depends="init, - tests-standard-stress, + tests-standard-stress, + tests-iiop-stress, tests-client-stress, tests-security-basic-stress, tests-jbossmx-performance, @@ -2438,12 +2440,13 @@ <fileset dir="${build.classes}"> <include name="**/*StressTestCase.class"/> - <!-- do not include the perf or security tests --> + <!-- do not include the perf, security, or iiop tests --> <!--mq test seems to break things--> <!--exclude name="**/JBossMQPerfStressTestCase.class"/--> <exclude name="**/test/perf/test/SecurePerfStressTestCase.class"/> <exclude name="**/test/security/test/*"/> <exclude name="**/test/securitymgr/test/*"/> + <exclude name="**/test/*iiop/test/*"/> </fileset> </batchtest> </junit> @@ -2968,6 +2971,58 @@ </target> <!-- + | IIOP test cases that should run successfully + --> + + <target name="tests-iiop-stress" depends="maybejars"> + <mkdir dir="${build.reports}"/> + <mkdir dir="${build.testlog}"/> + <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}"/> + <jvmarg value="-Dorg.omg.CORBA.ORBClass=org.jacorb.orb.ORB"/> + <jvmarg value="-Dorg.omg.CORBA.ORBSingletonClass=org.jacorb.orb.ORBSingleton"/> + <jvmarg value="-Djacorb.orb.print_version=off"/> + <sysproperty key="jacorb.verbosity" value="0"/> + <jvmarg value="-Djava.security.manager"/> + <sysproperty key="java.security.policy" + value="${build.resources}/security/tst.policy"/> + <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="jbosstest.threadcount" value="${jbosstest.threadcount}"/> + <sysproperty key="jbosstest.iterationcount" value="${jbosstest.iterationcount}"/> + <sysproperty key="jbosstest.beancount" value="${jbosstest.beancount}"/> + + <classpath> + <pathelement location="${build.classes}"/> + <pathelement location="${build.resources}"/> + <path refid="tests.classpath"/> + <path refid="jboss.iiop.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/*iiop/test/*StressTestCase.class"/> + </fileset> + </batchtest> + </junit> + </target> + + <!-- | Run testcases in a single directory by specifing the test directory | name in -Dtest=dirname in tests/dirname/test/**TestCase.class --> @@ -3037,9 +3092,13 @@ <jvmarg value="${junit.jvm.options}"/> <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"/> <jvmarg value="-Dorg.omg.CORBA.ORBClass=org.jacorb.orb.ORB"/> <jvmarg value="-Dorg.omg.CORBA.ORBSingletonClass=org.jacorb.orb.ORBSingleton"/> + <jvmarg value="-Djacorb.verbosity=0"/> + <jvmarg value="-Djacorb.orb.print_version=off"/> <jvmarg value="-Djava.security.manager"/> <jvmarg value="-Djava.security.policy==${build.resources}/${test}/client.policy"/> <sysproperty key="log4j.properties" file="${build.resources}/log4j.properties"/> |
From: David J. <d_j...@us...> - 2002-04-28 19:45:07
|
User: d_jencks Date: 02/04/27 11:36:02 Modified: . Tag: Branch_3_0 build.xml Log: fixed secure-perf jar content. This is the 112 to 113 main branch change that I forgot to merge Revision Changes Path No revision No revision 1.106.2.6 +2 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.106.2.5 retrieving revision 1.106.2.6 diff -u -r1.106.2.5 -r1.106.2.6 --- build.xml 26 Apr 2002 17:50:54 -0000 1.106.2.5 +++ build.xml 27 Apr 2002 18:36:01 -0000 1.106.2.6 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.106.2.5 2002/04/26 17:50:54 reverbel Exp $ --> +<!-- $Id: build.xml,v 1.106.2.6 2002/04/27 18:36:01 d_jencks Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -1735,7 +1735,7 @@ <include name="org/jboss/test/perf/interfaces/**"/> <include name="org/jboss/test/perf/ejb/**"/> </fileset> - <metainf dir="${build.resources}/perf/META-INF" /> + <metainf dir="${build.resources}/secure-perf/META-INF" /> <fileset dir="${build.resources}/secure-perf"> <include name="users.properties"/> <include name="roles.properties"/> |
From: Bill B. <pat...@us...> - 2002-04-28 23:16:37
|
User: patriot1burke Date: 02/04/28 16:16:12 Modified: . build.xml Log: Multi Invoker changes. Revision Changes Path 1.115 +34 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.114 retrieving revision 1.115 diff -u -r1.114 -r1.115 --- build.xml 26 Apr 2002 17:33:55 -0000 1.114 +++ build.xml 28 Apr 2002 23:16:11 -0000 1.115 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.114 2002/04/26 17:33:55 starksm Exp $ --> +<!-- $Id: build.xml,v 1.115 2002/04/28 23:16:11 patriot1burke Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -722,6 +722,7 @@ _jars-jbossmq, _jars-load, _jars-jrmp, + _jars-invokers, _jars-threading, _jars-deadlock, _jars-testbean, @@ -1570,6 +1571,37 @@ </jar> </target> + <!-- invokers test --> + <target name="_jars-invokers"> + <mkdir dir="${build.lib}"/> + + <!-- build invokers-client.jar --> + <jar jarfile="${build.lib}/invokers-client.jar" + manifest="${build.etc}/manifest.mf"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/invokers/interfaces/**"/> + </fileset> + </jar> + + <!-- build invokers-comp.jar --> + <jar jarfile="${build.lib}/invokers.sar"> + <metainf dir="${build.resources}/invokers/service-inf" /> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/invokers/ejb/Compression*.class"/> + </fileset> + </jar> + <jar jarfile="${build.lib}/invokers.jar"> + <metainf dir="${build.resources}/invokers/META-INF" /> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/invokers/interfaces/**"/> + <include name="org/jboss/test/invokers/ejb/**"/> + </fileset> + <fileset dir="${build.lib}"> + <include name="invokers.sar"/> + </fileset> + </jar> + </target> + <!-- threading test --> <target name="_jars-threading"> <mkdir dir="${build.lib}"/> @@ -2295,13 +2327,13 @@ <antcall target="jars"/> </target> +<!-- tests-iiop-stress, --> <target name="tests" description="Execute all tests." depends="init, tests-standard-unit, tests-client-unit, tests-security-basic-unit, tests-standard-stress, - tests-iiop-stress, tests-client-stress, tests-security-basic-stress, tests-jsr77-unit, |
From: Bill B. <pat...@us...> - 2002-04-29 22:33:41
|
User: patriot1burke Date: 02/04/29 15:33:20 Modified: . build.xml Log: iiop fixes from multi invokers Revision Changes Path 1.116 +2 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.115 retrieving revision 1.116 diff -u -r1.115 -r1.116 --- build.xml 28 Apr 2002 23:16:11 -0000 1.115 +++ build.xml 29 Apr 2002 22:33:20 -0000 1.116 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.115 2002/04/28 23:16:11 patriot1burke Exp $ --> +<!-- $Id: build.xml,v 1.116 2002/04/29 22:33:20 patriot1burke Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -2327,7 +2327,6 @@ <antcall target="jars"/> </target> -<!-- tests-iiop-stress, --> <target name="tests" description="Execute all tests." depends="init, tests-standard-unit, @@ -2341,6 +2340,7 @@ tests-jbossmx-compliance, tests-jbossmx-implementation, tests-jbossmx-performance, + tests-iiop-stress, tests-report"> </target> |
From: Hiram C. <ch...@us...> - 2002-05-02 03:41:18
|
User: chirino Date: 02/05/01 20:41:17 Modified: . build.xml Log: Including the objectweb JMS test in the standard testsuite.. A new selector bug has cropped up since the tightening of the selector grammar.. I'll track that bug down next. Revision Changes Path 1.117 +4 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.116 retrieving revision 1.117 diff -u -r1.116 -r1.117 --- build.xml 29 Apr 2002 22:33:20 -0000 1.116 +++ build.xml 2 May 2002 03:41:17 -0000 1.117 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.116 2002/04/29 22:33:20 patriot1burke Exp $ --> +<!-- $Id: build.xml,v 1.117 2002/05/02 03:41:17 chirino Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -2414,7 +2414,10 @@ fork="${junit.batchtest.fork}"> <fileset dir="${build.classes}"> + <include name="**/*UnitTestCase.class"/> + <!-- include the objectweb JMS tests --> + <include name="org/objectweb/jtests/**/*Test.class"/> <!-- do not include the dyn loading or security tests --> <exclude name="**/test/jrmp/test/DynLoadingUnitTestCase.class"/> |
From: Francisco R. <rev...@us...> - 2002-05-04 19:46:53
|
User: reverbel Date: 02/05/04 12:46:52 Modified: . build.xml Log: Fixed typo so that the testsuite builds again. (Assuming the xdoclet112 stuff was a typo... In case it wasn't, could someone please correct this file?) Revision Changes Path 1.119 +3 -4 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.118 retrieving revision 1.119 diff -u -r1.118 -r1.119 --- build.xml 4 May 2002 01:08:25 -0000 1.118 +++ build.xml 4 May 2002 19:46:52 -0000 1.119 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.118 2002/05/04 01:08:25 schaefera Exp $ --> +<!-- $Id: build.xml,v 1.119 2002/05/04 19:46:52 reverbel Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -593,10 +593,9 @@ <mkdir dir="${build.resources}/banknew/META-INF"/> <xdoclet destdir="${build.gen-src}" - classpath="${xdoclet112.task.classpath}" + classpath="${xdoclet.task.classpath}" ejbspec="2.0" - excludedtags="@version,@author" - > + excludedtags="@version,@author"> <!--mergedir="${source.resources}/jca/ejb"--> <fileset dir="${source.java}"> <include name="org/jboss/test/banknew/ejb/*Bean.java"/> |
From: David J. <d_j...@us...> - 2002-05-05 05:13:26
|
User: d_jencks Date: 02/05/04 22:13:25 Modified: . build.xml Log: Added ability to deploy xmbeans from a *-service.xml file. Use the code attribute to specify the class of the object you want managed, and include an xmbean-dd=[quoted url] attribute to indicate where the xml dd comes from. An example is provided in the testsuite under jmx/xmbean. This deploys but has many other problems. Revision Changes Path 1.120 +27 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.119 retrieving revision 1.120 diff -u -r1.119 -r1.120 --- build.xml 4 May 2002 19:46:52 -0000 1.119 +++ build.xml 5 May 2002 05:13:25 -0000 1.120 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.119 2002/05/04 19:46:52 reverbel Exp $ --> +<!-- $Id: build.xml,v 1.120 2002/05/05 05:13:25 d_jencks Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -414,7 +414,7 @@ | documentation compiles. --> <target name="compile" - depends="compile-classes, compile-etc, compile-stylesheets, compile-resources" + depends="compile-classes, compile-xmbean-dds, compile-etc, compile-stylesheets, compile-resources" description="Compile all source files."/> <!-- Compile EJB beans with XDoclet --> @@ -633,6 +633,21 @@ </fileset> <mbeaninterface mergedir="${xdoclet.mergedir}"/> </jmxdoclet> + </target> + + <target name="compile-xmbean-dds" depends="init"> + <taskdef name="jmxdoclet" classname="xdoclet.jmx.JMXDocletTask"/> +<echo message="xdoclet.mergedir: ${xdoclet.mergedir}"/> + <mkdir dir="${build.resources}/jmx/xmbean/META-INF"/> + <jmxdoclet destdir="${build.resources}/jmx/xmbean/META-INF" + classpath="${xdoclet.task.classpath}" + force="true" + excludedtags="@version,@author"> + <fileset dir="${source.java}"> + <include name="org/jboss/test/jmx/xmbean/*.java"/> + </fileset> + <jbossxmbean/> + </jmxdoclet> </target> @@ -1464,6 +1479,16 @@ </fileset> <fileset dir="${build.resources}/jmx/undeploy"> <include name="META-INF/*.xml"/> + </fileset> + </jar> + + <!--xmbean test deployment--> + <jar jarfile="${build.lib}/user-xmbean.sar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/jmx/xmbean/*.class"/> + </fileset> + <fileset dir="${build.resources}/jmx/xmbean"> + <include name="META-INF/**/*.xml"/> </fileset> </jar> |
From: Dan C. <da...@us...> - 2002-05-06 01:15:08
|
User: danch Date: 02/05/05 18:15:07 Modified: . build.xml Log: pass threadcount to marathon Revision Changes Path 1.121 +2 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.120 retrieving revision 1.121 diff -u -r1.120 -r1.121 --- build.xml 5 May 2002 05:13:25 -0000 1.120 +++ build.xml 6 May 2002 01:15:07 -0000 1.121 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.120 2002/05/05 05:13:25 d_jencks Exp $ --> +<!-- $Id: build.xml,v 1.121 2002/05/06 01:15:07 danch Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -2959,6 +2959,7 @@ 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}"/> <classpath> <pathelement location="${build.classes}"/> |
From: Scott M S. <st...@us...> - 2002-05-08 02:22:52
|
User: starksm Date: 02/05/07 19:22:52 Modified: . Tag: Branch_3_0 build.xml Log: Add JSSE libs to the library.classpath Revision Changes Path No revision No revision 1.106.2.7 +11 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.106.2.6 retrieving revision 1.106.2.7 diff -u -r1.106.2.6 -r1.106.2.7 --- build.xml 27 Apr 2002 18:36:01 -0000 1.106.2.6 +++ build.xml 8 May 2002 02:22:51 -0000 1.106.2.7 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.106.2.6 2002/04/27 18:36:01 d_jencks Exp $ --> +<!-- $Id: build.xml,v 1.106.2.7 2002/05/08 02:22:51 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -100,6 +100,15 @@ <pathelement path="${sun.jce.lib}/jce1_2_1.jar"/> </path> + <!-- Java Secure Sockets Extension (JSSE) --> + <property name="sun.jsse.root" value="${project.thirdparty}/sun/jsse"/> + <property name="sun.jsse.lib" value="${sun.jsse.root}/lib"/> + <path id="sun.jsse.classpath"> + <pathelement path="${sun.jsse.lib}/jcert.jar"/> + <pathelement path="${sun.jsse.lib}/jnet.jar"/> + <pathelement path="${sun.jsse.lib}/jsse.jar"/> + </path> + <!-- JavaMail --> <property name="sun.javamail.root" value="${project.thirdparty}/sun/javamail"/> <property name="sun.javamail.lib" value="${sun.javamail.root}/lib"/> @@ -171,6 +180,7 @@ <path refid="sun.jaxp.classpath"/> <path refid="sun.jaas.classpath"/> <path refid="sun.jce.classpath"/> + <path refid="sun.jsse.classpath"/> <path refid="sun.javamail.classpath"/> <path refid="sun.servlet.classpath"/> <path refid="apache.log4j.classpath"/> |
From: Andreas S. <sch...@us...> - 2002-05-08 06:33:06
|
User: schaefera Date: 02/05/07 23:33:05 Modified: . build.xml Log: Implemented the JSR-77 representation for SARs and MBeans. Also fixed a problem with the new Mail service in JSR-77 test. Pending is how to deal with EARs etc. in SARs. Revision Changes Path 1.123 +2 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.122 retrieving revision 1.123 diff -u -r1.122 -r1.123 --- build.xml 7 May 2002 01:31:36 -0000 1.122 +++ build.xml 8 May 2002 06:33:05 -0000 1.123 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.122 2002/05/07 01:31:36 schaefera Exp $ --> +<!-- $Id: build.xml,v 1.123 2002/05/08 06:33:05 schaefera Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -284,7 +284,7 @@ <property name="jboss.management.root" value="${project.root}/management/output"/> <property name="jboss.management.lib" value="${jboss.management.root}/lib"/> <path id="jboss.management.classpath"> - <pathelement path="${jboss.management.lib}/jboss-jsr77.jar"/> + <pathelement path="${jboss.management.lib}/jboss-jsr77-client.jar"/> <pathelement path="${jboss.management.lib}/jboss-management.jar"/> </path> |
From: Scott M S. <st...@us...> - 2002-05-16 06:46:39
|
User: starksm Date: 02/05/15 23:46:36 Modified: . build.xml Log: Add the JSSE jars to the library.classpath Revision Changes Path 1.125 +11 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.124 retrieving revision 1.125 diff -u -r1.124 -r1.125 --- build.xml 9 May 2002 04:05:36 -0000 1.124 +++ build.xml 16 May 2002 06:46:32 -0000 1.125 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.124 2002/05/09 04:05:36 danch Exp $ --> +<!-- $Id: build.xml,v 1.125 2002/05/16 06:46:32 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -104,6 +104,15 @@ <pathelement path="${sun.jce.lib}/jce1_2_1.jar"/> </path> + <!-- Java Secure Sockets Extension (JSSE) --> + <property name="sun.jsse.root" value="${project.thirdparty}/sun/jsse"/> + <property name="sun.jsse.lib" value="${sun.jsse.root}/lib"/> + <path id="sun.jsse.classpath"> + <pathelement path="${sun.jsse.lib}/jcert.jar"/> + <pathelement path="${sun.jsse.lib}/jnet.jar"/> + <pathelement path="${sun.jsse.lib}/jsse.jar"/> + </path> + <!-- JavaMail --> <property name="sun.javamail.root" value="${project.thirdparty}/sun/javamail"/> <property name="sun.javamail.lib" value="${sun.javamail.root}/lib"/> @@ -175,6 +184,7 @@ <path refid="sun.jaxp.classpath"/> <path refid="sun.jaas.classpath"/> <path refid="sun.jce.classpath"/> + <path refid="sun.jsse.classpath"/> <path refid="sun.javamail.classpath"/> <path refid="sun.servlet.classpath"/> <path refid="apache.log4j.classpath"/> |
From: Scott M S. <st...@us...> - 2002-05-16 15:47:55
|
User: starksm Date: 02/05/16 08:47:54 Modified: . Tag: Branch_3_0 build.xml Log: Set the report output location correctly for the tests-security-policy Revision Changes Path No revision No revision 1.106.2.8 +5 -4 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.106.2.7 retrieving revision 1.106.2.8 diff -u -r1.106.2.7 -r1.106.2.8 --- build.xml 8 May 2002 02:22:51 -0000 1.106.2.7 +++ build.xml 16 May 2002 15:47:54 -0000 1.106.2.8 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.106.2.7 2002/05/08 02:22:51 starksm Exp $ --> +<!-- $Id: build.xml,v 1.106.2.8 2002/05/16 15:47:54 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -2696,7 +2696,7 @@ <path refid="tests.classpath"/> </classpath> - <formatter type="xml" /> + <formatter type="xml" usefile="true" /> <batchtest todir="${build.reports}" haltonerror="false" @@ -2728,7 +2728,7 @@ <jvmarg value="-Djava.security.manager"/> <jvmarg value="-Djava.security.policy==${build.resources}/securitymgr/client.policy"/> <!-- - <jvmarg value="-Djava.security.debug=access,domain,stack"/> + <jvmarg value="-Djava.security.debug=access,failure,domain"/> --> <sysproperty key="jboss.home" file="${project.root}"/> <sysproperty key="jboss.thirdparty.dir" file="${project.root}/thirdparty"/> @@ -2746,8 +2746,9 @@ <path refid="tests.classpath"/> </classpath> - <formatter type="xml" /> + <formatter type="xml" usefile="true" /> <test name="org.jboss.test.securitymgr.test.PolicyUnitTestCase" + todir="${build.reports}" haltonerror="false" haltonfailure="false" fork="true" /> |
From: David J. <d_j...@us...> - 2002-05-17 03:14:05
|
User: d_jencks Date: 02/05/16 20:14:05 Modified: . build.xml Log: fixed to supply datasource-mapping in cmr post create test ejb Revision Changes Path 1.126 +4 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.125 retrieving revision 1.126 diff -u -r1.125 -r1.126 --- build.xml 16 May 2002 06:46:32 -0000 1.125 +++ build.xml 17 May 2002 03:14:05 -0000 1.126 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.125 2002/05/16 06:46:32 starksm Exp $ --> +<!-- $Id: build.xml,v 1.126 2002/05/17 03:14:05 d_jencks Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -537,7 +537,9 @@ <jboss xmlencoding="UTF-8" version="3.0" destdir="${build.resources}/cmp2/cmr/META-INF" - mergedir="${source.resources}/cmp2/cmr/"/> + mergedir="${source.resources}/cmp2/cmr/" + Datasource="java:/DefaultDS" + Typemapping="Hypersonic SQL"/> </xdoclet> |
From: David J. <d_j...@us...> - 2002-05-17 03:17:06
|
User: d_jencks Date: 02/05/16 20:17:06 Modified: . Tag: Branch_3_0 build.xml Log: fixed to supply datasource-mapping in cmr post create test ejb (merge from head) Revision Changes Path No revision No revision 1.106.2.9 +4 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.106.2.8 retrieving revision 1.106.2.9 diff -u -r1.106.2.8 -r1.106.2.9 --- build.xml 16 May 2002 15:47:54 -0000 1.106.2.8 +++ build.xml 17 May 2002 03:17:06 -0000 1.106.2.9 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.106.2.8 2002/05/16 15:47:54 starksm Exp $ --> +<!-- $Id: build.xml,v 1.106.2.9 2002/05/17 03:17:06 d_jencks Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -525,7 +525,9 @@ <jboss xmlencoding="UTF-8" version="3.0" destdir="${build.resources}/cmp2/cmr/META-INF" - mergedir="${source.resources}/cmp2/cmr/"/> + mergedir="${source.resources}/cmp2/cmr/" + Datasource="java:/DefaultDS" + Typemapping="Hypersonic SQL"/> </xdoclet> |
From: Scott M S. <st...@us...> - 2002-05-18 13:53:28
|
User: starksm Date: 02/05/18 06:53:27 Modified: . Tag: Branch_3_0 build.xml Log: Compile the client callback stub and include it in the cts ejb jar Revision Changes Path No revision No revision 1.106.2.10 +21 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.106.2.9 retrieving revision 1.106.2.10 diff -u -r1.106.2.9 -r1.106.2.10 --- build.xml 17 May 2002 03:17:06 -0000 1.106.2.9 +++ build.xml 18 May 2002 13:53:27 -0000 1.106.2.10 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.106.2.9 2002/05/17 03:17:06 d_jencks Exp $ --> +<!-- $Id: build.xml,v 1.106.2.10 2002/05/18 13:53:27 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -866,6 +866,23 @@ <target name="_jars-cts"> <mkdir dir="${build.lib}"/> + <!-- --> + <rmic base="${build.classes}" + sourcebase="${build.classes}" + verify="${rmic.verify}" + iiop="${rmic.iiop}" + iiopopts="${rmic.iiopops}" + idl="${rmic.idl}" + idlopts="${rmic.idlops}" + debug="${rmic.debug}" + stubVersion="${rmic.stubVersion}" + > + <classpath refid="tests.classpath"/> + <include name="${rmic.includes}"/> + <exclude name="${rmic.excludes}"/> + <include name="org/jboss/test/cts/test/ClientCallbackImpl.class" /> + </rmic> + <!-- build ctstest.jar --> <jar jarfile="${build.lib}/ctstest.jar" manifest="${build.etc}/manifest.mf"> @@ -890,9 +907,11 @@ <include name="org/jboss/test/cts/beans/**"/> <include name="org/jboss/test/cts/jms/**"/> <include name="org/jboss/test/cts/keys/**"/> + <include name="org/jboss/test/cts/test/*_Stub*.class"/> </fileset> <fileset dir="${build.resources}/cts"> - <include name="**/*.xml"/> + <include name="META-INF/ejb-jar.xml"/> + <include name="META-INF/jboss.xml"/> </fileset> </jar> </target> |
From: Scott M S. <st...@us...> - 2002-05-18 14:10:14
|
User: starksm Date: 02/05/18 07:10:14 Modified: . build.xml Log: Compile the client callback stub and include it in the cts ejb jar Revision Changes Path 1.127 +21 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.126 retrieving revision 1.127 diff -u -r1.126 -r1.127 --- build.xml 17 May 2002 03:14:05 -0000 1.126 +++ build.xml 18 May 2002 14:10:14 -0000 1.127 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.126 2002/05/17 03:14:05 d_jencks Exp $ --> +<!-- $Id: build.xml,v 1.127 2002/05/18 14:10:14 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -954,6 +954,23 @@ <target name="_jars-cts"> <mkdir dir="${build.lib}"/> + <!-- Compile the ClientCallbackImpl stub --> + <rmic base="${build.classes}" + sourcebase="${build.classes}" + verify="${rmic.verify}" + iiop="${rmic.iiop}" + iiopopts="${rmic.iiopops}" + idl="${rmic.idl}" + idlopts="${rmic.idlops}" + debug="${rmic.debug}" + stubVersion="${rmic.stubVersion}" + > + <classpath refid="tests.classpath"/> + <include name="${rmic.includes}"/> + <exclude name="${rmic.excludes}"/> + <include name="org/jboss/test/cts/test/ClientCallbackImpl.class" /> + </rmic> + <!-- build ctstest.jar --> <jar jarfile="${build.lib}/ctstest.jar" manifest="${build.etc}/manifest.mf"> @@ -978,9 +995,11 @@ <include name="org/jboss/test/cts/beans/**"/> <include name="org/jboss/test/cts/jms/**"/> <include name="org/jboss/test/cts/keys/**"/> + <include name="org/jboss/test/cts/test/*_Stub*.class"/> </fileset> <fileset dir="${build.resources}/cts"> - <include name="**/*.xml"/> + <include name="META-INF/ejb-jar.xml"/> + <include name="META-INF/jboss.xml"/> </fileset> </jar> </target> |
From: Scott M S. <st...@us...> - 2002-05-18 21:23:29
|
User: starksm Date: 02/05/18 14:23:28 Modified: . Tag: Branch_3_0 build.xml Log: Fix some empty datasource mappings created by xdoclet Add the missing https-service.sar build Revision Changes Path No revision No revision 1.106.2.11 +27 -6 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.106.2.10 retrieving revision 1.106.2.11 diff -u -r1.106.2.10 -r1.106.2.11 --- build.xml 18 May 2002 13:53:27 -0000 1.106.2.10 +++ build.xml 18 May 2002 21:23:28 -0000 1.106.2.11 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.106.2.10 2002/05/18 13:53:27 starksm Exp $ --> +<!-- $Id: build.xml,v 1.106.2.11 2002/05/18 21:23:28 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -438,7 +438,8 @@ classpath="${xdoclet.task.classpath}" ejbspec="2.0" excludedtags="@version,@author" - mergedir="${source.resources}/ejb-conf/readonly"> + mergedir="${source.resources}/ejb-conf/readonly"> + <fileset dir="${source.java}"> <include name="org/jboss/test/ejbconf/beans/**/*Bean.java"/> </fileset> @@ -453,7 +454,9 @@ <jboss xmlencoding="UTF-8" version="3.0" destdir="${build.resources}/ejbconf/readonly/META-INF" - mergedir="${source.resources}/ejbconf/readonly/"/> + mergedir="${source.resources}/ejbconf/readonly/" + Datasource="java:/DefaultDS" + Typemapping="Hypersonic SQL"/> </xdoclet> <!--eardeployment, SessionA--> @@ -462,7 +465,7 @@ classpath="${xdoclet.task.classpath}" ejbspec="2.0" excludedtags="@version,@author" - mergedir="${source.resources}/eardeployment/a"> + mergedir="${source.resources}/eardeployment/a"> <fileset dir="${source.java}"> <include name="org/jboss/test/jmx/eardeployment/a/ejb/*Bean.java"/> </fileset> @@ -552,7 +555,9 @@ <jboss xmlencoding="UTF-8" version="3.0" destdir="${build.resources}/jmx/undeploy/META-INF" - mergedir="${source.resources}/jmx/undeploy/"/> + mergedir="${source.resources}/jmx/undeploy/" + Datasource="java:/DefaultDS" + Typemapping="Hypersonic SQL"/> </xdoclet> <!--new jca framework tests--> @@ -2004,7 +2009,8 @@ <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/service/**"/> + <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"> @@ -2015,6 +2021,17 @@ </fileset> </jar> + <!-- build https-service.sar --> + <jar jarfile="${build.lib}/https-service.sar"> + <metainf dir="${build.resources}/security/META-INF"/> + <metainf dir="${build.resources}/security"> + <include name="tst.keystore"/> + </metainf> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/security/service/Https*.class"/> + </fileset> + </jar> + <!-- build security-proxy.jar --> <jar jarfile="${build.lib}/security-proxy.jar"> <fileset dir="${build.classes}"> @@ -3187,10 +3204,14 @@ <sysproperty key="jbosstest.threadcount" value="${jbosstest.threadcount}"/> <sysproperty key="jbosstest.iterationcount" value="${jbosstest.iterationcount}"/> <sysproperty key="jbosstest.beancount" value="${jbosstest.beancount}"/> + <sysproperty key="java.security.auth.login.config" + value="${build.resources}/security/auth.conf"/> <classpath> <pathelement location="${build.classes}"/> <pathelement location="${build.resources}"/> + <!-- Include for those tests that need common security resources --> + <pathelement location="${build.resources}/security"/> <path refid="tests.classpath"/> </classpath> |
From: Scott M S. <st...@us...> - 2002-05-18 21:36:13
|
User: starksm Date: 02/05/18 14:36:12 Modified: . build.xml Log: Fix some empty datasource mappings created by xdoclet Revision Changes Path 1.128 +13 -3 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.127 retrieving revision 1.128 diff -u -r1.127 -r1.128 --- build.xml 18 May 2002 14:10:14 -0000 1.127 +++ build.xml 18 May 2002 21:36:12 -0000 1.128 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.127 2002/05/18 14:10:14 starksm Exp $ --> +<!-- $Id: build.xml,v 1.128 2002/05/18 21:36:12 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -465,7 +465,10 @@ <jboss xmlencoding="UTF-8" version="3.0" destdir="${build.resources}/ejbconf/readonly/META-INF" - mergedir="${source.resources}/ejbconf/readonly/"/> + mergedir="${source.resources}/ejbconf/readonly/" + Datasource="java:/DefaultDS" + Typemapping="Hypersonic SQL" + /> </xdoclet> <!--eardeployment, SessionA--> @@ -564,7 +567,10 @@ <jboss xmlencoding="UTF-8" version="3.0" destdir="${build.resources}/jmx/undeploy/META-INF" - mergedir="${source.resources}/jmx/undeploy/"/> + mergedir="${source.resources}/jmx/undeploy/" + Datasource="java:/DefaultDS" + Typemapping="Hypersonic SQL" + /> </xdoclet> <!--new jca framework tests--> @@ -3432,10 +3438,14 @@ <sysproperty key="jbosstest.threadcount" value="${jbosstest.threadcount}"/> <sysproperty key="jbosstest.iterationcount" value="${jbosstest.iterationcount}"/> <sysproperty key="jbosstest.beancount" value="${jbosstest.beancount}"/> + <sysproperty key="java.security.auth.login.config" + value="${build.resources}/security/auth.conf"/> <classpath> <pathelement location="${build.classes}"/> <pathelement location="${build.resources}"/> + <!-- Include for those tests that need common security resources --> + <pathelement location="${build.resources}/security"/> <path refid="tests.classpath"/> </classpath> |
From: Francisco R. <rev...@us...> - 2002-05-18 22:37:05
|
User: reverbel Date: 02/05/18 15:37:04 Modified: . build.xml Log: - helloiiop and bankiiop now use the CORBA naming service to get the EJBHome. - Added test hellojrmpiiop, in which the same bean receives JRMP and IIOP invocations. Revision Changes Path 1.129 +31 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.128 retrieving revision 1.129 diff -u -r1.128 -r1.129 --- build.xml 18 May 2002 21:36:12 -0000 1.128 +++ build.xml 18 May 2002 22:37:04 -0000 1.129 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.128 2002/05/18 21:36:12 starksm Exp $ --> +<!-- $Id: build.xml,v 1.129 2002/05/18 22:37:04 reverbel Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -811,6 +811,7 @@ _jars-proxycompiler, _jars-helloiiop, _jars-bankiiop, + _jars-hellojrmpiiop, _jars-marathon"> </target> @@ -1096,6 +1097,34 @@ </jar> </target> + <!-- hellojrmpiiop test --> + <target name="_jars-hellojrmpiiop"> + <mkdir dir="${build.lib}"/> + + <!-- build hellojrmpiioptest.jar --> + <jar jarfile="${build.lib}/hellojrmpiioptest.jar" + manifest="${build.etc}/manifest.mf"> + <fileset dir="${build.classes}"> + <patternset refid="common.test.client.classes"/> + <include name="org/jboss/test/hellojrmpiiop/interfaces/**"/> + <include name="org/jboss/test/hellojrmpiiop/test/**"/> + </fileset> + <fileset dir="${build.resources}/hellojrmpiiop"> + <include name="*.*"/> + </fileset> + </jar> + + <!-- build hellojrmpiiop.jar --> + <jar jarfile="${build.lib}/hellojrmpiiop.jar"> + <metainf dir="${build.resources}/hellojrmpiiop/META-INF" /> + <fileset dir="${build.classes}"> + <patternset refid="common.test.application.classes"/> + <include name="org/jboss/test/hellojrmpiiop/interfaces/**"/> + <include name="org/jboss/test/hellojrmpiiop/ejb/**"/> + </fileset> + </jar> + </target> + <!-- idgen test --> <target name="_jars-idgen"> <mkdir dir="${build.lib}"/> @@ -3341,6 +3370,7 @@ <jvmarg value="-Djacorb.orb.print_version=off"/> <jvmarg value="-Djava.security.manager"/> <jvmarg value="-Djava.security.policy==${build.resources}/${test}/client.policy"/> + <sysproperty key="log4j.properties" file="${build.resources}/log4j.properties"/> <sysproperty key="jbosstest.threadcount" value="${jbosstest.threadcount}"/> <sysproperty key="jbosstest.iterationcount" value="${jbosstest.iterationcount}"/> |
From: Scott M S. <st...@us...> - 2002-05-21 03:00:12
|
User: starksm Date: 02/05/20 20:00:11 Modified: . Tag: Branch_3_0 build.xml Log: Add tests of resource loading from an mbean service Revision Changes Path No revision No revision 1.106.2.12 +48 -3 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.106.2.11 retrieving revision 1.106.2.12 diff -u -r1.106.2.11 -r1.106.2.12 --- build.xml 18 May 2002 21:23:28 -0000 1.106.2.11 +++ build.xml 21 May 2002 03:00:11 -0000 1.106.2.12 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.106.2.11 2002/05/18 21:23:28 starksm Exp $ --> +<!-- $Id: build.xml,v 1.106.2.12 2002/05/21 03:00:11 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -467,7 +467,7 @@ excludedtags="@version,@author" mergedir="${source.resources}/eardeployment/a"> <fileset dir="${source.java}"> - <include name="org/jboss/test/jmx/eardeployment/a/ejb/*Bean.java"/> + <include name="org/jboss/test/jmx/eardeployment/a/ejb/SessionABean.java"/> </fileset> <packageSubstitution packages="ejb" substituteWith="interfaces"/> <remoteinterface/> @@ -1319,6 +1319,45 @@ </fileset> </jar> + <!-- ResourceTsts case#1, a sar with the classes and resources --> + <jar jarfile="${build.lib}/rsrc1.sar"> + <metainf dir="${build.resources}/jmx/loading/rsrc1" /> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/jmx/loading/ResourceTsts*"/> + </fileset> + </jar> + <!-- ResourceTsts case#2, a sar with the resources and the + service in a nested jar + --> + <jar jarfile="${build.lib}/rsrcsvc.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/jmx/loading/ResourceTsts*"/> + </fileset> + </jar> + <jar jarfile="${build.lib}/rsrc2.sar"> + <metainf dir="${build.resources}/jmx/loading/rsrc2" /> + <fileset dir="${build.lib}"> + <include name="rsrcsvc.jar"/> + </fileset> + </jar> + <!-- ResourceTsts case#3, a jar with two sars with only + the service descriptor metadata and a jar containing the + service code. + --> + <jar jarfile="${build.lib}/rsrc31.sar"> + <metainf dir="${build.resources}/jmx/loading/rsrc1" /> + </jar> + <jar jarfile="${build.lib}/rsrc32.sar"> + <metainf dir="${build.resources}/jmx/loading/rsrc2" /> + </jar> + <jar jarfile="${build.lib}/rsrc3.jar"> + <fileset dir="${build.lib}"> + <include name="rsrcsvc.jar"/> + <include name="rsrc31.sar" /> + <include name="rsrc32.sar" /> + </fileset> + </jar> + <!--build test sar for testing local directory copy deployment --> <jar jarfile="${build.lib}/testcopylocaldir.sar"> <fileset dir="${build.classes}"> @@ -1895,6 +1934,9 @@ <!-- build jbosstest-web.ear --> <ear earfile="${build.lib}/jbosstest-web.ear" appxml="${build.resources}/web/META-INF/application.xml"> + <metainf dir="${build.resources}/web/META-INF"> + <include name="jboss-app.xml" /> + </metainf> <fileset dir="${build.lib}"> <include name="jbosstest-web-ejbs.jar"/> <include name="root-web.war"/> @@ -3097,11 +3139,14 @@ <sysproperty key="jbosstest.threadcount" value="${jbosstest.threadcount}"/> <sysproperty key="jbosstest.iterationcount" value="${jbosstest.iterationcount}"/> <sysproperty key="jbosstest.beancount" value="${jbosstest.beancount}"/> - + <sysproperty key="java.security.auth.login.config" + value="${build.resources}/security/auth.conf"/> <classpath> <pathelement location="${build.classes}"/> <pathelement location="${build.resources}"/> + <!-- Include for those tests that need common security resources --> + <pathelement location="${build.resources}/security"/> <path refid="tests.classpath"/> </classpath> |