From: Adrian B. <ej...@us...> - 2003-04-22 09:16:23
|
User: ejort Date: 03/04/22 02:16:22 Modified: . build.xml Log: Port the ejbload and pathological tests from 3.2 Revision Changes Path 1.241 +32 -5 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.240 retrieving revision 1.241 diff -u -r1.240 -r1.241 --- build.xml 21 Apr 2003 22:02:45 -0000 1.240 +++ build.xml 22 Apr 2003 09:16:20 -0000 1.241 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.240 2003/04/21 22:02:45 patriot1burke Exp $ --> +<!-- $Id: build.xml,v 1.241 2003/04/22 09:16:20 ejort Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -640,7 +640,7 @@ <ejbdoclet destdir="${build.gen-src}" ejbspec="2.0" excludedtags="@version,@author" - mergedir="${source.resources}/entity"> + mergedir="${source.resources}/entity/entity"> <fileset dir="${source.java}"> <include name="org/jboss/test/entity/beans/*Bean.java"/> </fileset> @@ -654,14 +654,14 @@ <session/> <utilobject kind="physical"/> <deploymentdescriptor xmlencoding="UTF-8" - destdir="${build.resources}/entity/META-INF"/> + destdir="${build.resources}/entity/entity/META-INF"/> <jboss xmlencoding="UTF-8" version="${default.test.jboss-version}" datasource="${default.test.datasource}" typemapping="${default.test.typemapping}" createTable="${default.test.create-table}" removeTable="${default.test.remove-table}" - destdir="${build.resources}/entity/META-INF"/> + destdir="${build.resources}/entity/entity/META-INF"/> </ejbdoclet> <!-- exception test --> @@ -3216,7 +3216,34 @@ <include name="org/jboss/test/entity/beans/**"/> <include name="org/jboss/test/entity/test/**"/> </fileset> - <fileset dir="${build.resources}/entity"> + <fileset dir="${build.resources}/entity/entity"> + <include name="**"/> + </fileset> + </jar> + + <!-- build jboss-test-pathological-entity.jar --> + <jar jarfile="${build.lib}/jboss-test-pathological-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/ejb/**"/> + <include name="org/jboss/test/entity/test/PathologicalUnitTestCase"/> + </fileset> + <fileset dir="${build.resources}/entity/pathological"> + <include name="**"/> + </fileset> + </jar> + + <!-- build jboss-test-ejbload.jar --> + <jar jarfile="${build.lib}/jboss-test-ejbload.jar"> + <fileset dir="${build.classes}"> + <patternset refid="common.test.client.classes"/> + <include name="org/jboss/test/entity/interfaces/**"/> + <include name="org/jboss/test/entity/ejb/**"/> + <include name="org/jboss/test/entity/test/EJBLoadUnitTestCase"/> + </fileset> + <fileset dir="${build.resources}/entity/ejbload"> <include name="**"/> </fileset> </jar> |
From: David J. <d_j...@us...> - 2003-04-24 17:42:35
|
User: d_jencks Date: 03/04/24 10:42:33 Modified: . build.xml Log: Restore exception tests to working status. They use xdoclet to include the EJBTestRunner bean config directly, so the reference to the blocks source code is needed Revision Changes Path 1.242 +5 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.241 retrieving revision 1.242 diff -u -r1.241 -r1.242 --- build.xml 22 Apr 2003 09:16:20 -0000 1.241 +++ build.xml 24 Apr 2003 17:42:31 -0000 1.242 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.241 2003/04/22 09:16:20 ejort Exp $ --> +<!-- $Id: build.xml,v 1.242 2003/04/24 17:42:31 d_jencks Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -671,7 +671,10 @@ excludedtags="@version,@author"> <fileset dir="${source.java}"> <include name="org/jboss/test/exception/*Bean.java"/> - </fileset> + </fileset> + <fileset dir="${jboss.blocks.source.java}"> + <include name="org/jboss/blocks/junit/ejb/EJBTestRunnerBean.java"/> + </fileset> <!--packageSubstitution packages="beans" substituteWith="interfaces"/--> <remoteinterface/> <localinterface/> |
From: Jeremy B. <jb...@us...> - 2003-04-27 21:36:25
|
User: jboynes Date: 03/04/27 14:36:23 Modified: . Tag: Branch_3_2 build.xml Log: Fix for 723908 CMP Performs Unnecessary Check - plus other related stuff :-) Added a service MBean that can be used to classify SQLExceptions from the JDBC driver. Implemented check based on standard SQLState for unique constraint violation Modified JDBCCreate command to skip SELECT if an exception processor is defined To avoid migration issues, this is <b>not</b> the default behaviour - exmaple configuration is contained in standardjbosscmp-jdbc.xml Added test case for DuplicateKeyException Cleaned up UUID and PkSql create commands Added test cases for UUID and PkSql Key generation Revision Changes Path No revision No revision 1.165.2.59 +15 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.58 retrieving revision 1.165.2.59 diff -u -r1.165.2.58 -r1.165.2.59 --- build.xml 22 Apr 2003 00:39:37 -0000 1.165.2.58 +++ build.xml 27 Apr 2003 21:36:22 -0000 1.165.2.59 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.58 2003/04/22 00:39:37 ejort Exp $ --> +<!-- $Id: build.xml,v 1.165.2.59 2003/04/27 21:36:22 jboynes Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -3269,6 +3269,20 @@ includes="net/**/*.*"/> <zipfileset src="${junit.junit.lib}/junit.jar" includes="junit/**/*.*"/> + </jar> + + <!-- build cmp2-keygen.jar --> + <jar jarfile="${build.lib}/cmp2-keygen.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/cmp2/keygen/**"/> + </fileset> + <fileset dir="${build.resources}/cmp2/keygen"> + <include name="**/*.*"/> + </fileset> + <zipfileset src="${junitejb.junitejb.lib}/junitejb.jar" + includes="net/**/*.*"/> + <zipfileset src="${junit.junit.lib}/junit.jar" + includes="junit/**/*.*"/> </jar> </target> |
From: Jeremy B. <jb...@us...> - 2003-04-27 22:12:40
|
User: jboynes Date: 03/04/27 15:12:40 Modified: . Tag: Branch_3_2 build.xml Log: Make "test" target include all tests not just one level Revision Changes Path No revision No revision 1.165.2.60 +3 -3 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.59 retrieving revision 1.165.2.60 diff -u -r1.165.2.59 -r1.165.2.60 --- build.xml 27 Apr 2003 21:36:22 -0000 1.165.2.59 +++ build.xml 27 Apr 2003 22:12:38 -0000 1.165.2.60 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.59 2003/04/27 21:36:22 jboynes Exp $ --> +<!-- $Id: build.xml,v 1.165.2.60 2003/04/27 22:12:38 jboynes Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -4754,7 +4754,7 @@ fork="${junit.batchtest.fork}"> <fileset dir="${build.classes}"> - <include name="org/jboss/test/${test}/*/*TestCase.class"/> + <include name="org/jboss/test/${test}/**/*TestCase.class"/> </fileset> </batchtest> </junit> @@ -4813,7 +4813,7 @@ fork="${junit.batchtest.fork}"> <fileset dir="${build.classes}"> - <include name="org/jboss/test/${test}/*/*TestCase.class"/> + <include name="org/jboss/test/${test}/**/*TestCase.class"/> </fileset> </batchtest> </junit> |
From: Bela B. <be...@us...> - 2003-04-29 06:13:55
|
User: belaban Date: 03/04/28 23:13:54 Modified: . build.xml Log: added cache ejbdoclet and output:cache targets Revision Changes Path 1.243 +61 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.242 retrieving revision 1.243 diff -u -r1.242 -r1.243 --- build.xml 24 Apr 2003 17:42:31 -0000 1.242 +++ build.xml 29 Apr 2003 06:13:53 -0000 1.243 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.242 2003/04/24 17:42:31 d_jencks Exp $ --> +<!-- $Id: build.xml,v 1.243 2003/04/29 06:13:53 belaban Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -674,7 +674,7 @@ </fileset> <fileset dir="${jboss.blocks.source.java}"> <include name="org/jboss/blocks/junit/ejb/EJBTestRunnerBean.java"/> - </fileset> + </fileset> <!--packageSubstitution packages="beans" substituteWith="interfaces"/--> <remoteinterface/> <localinterface/> @@ -707,6 +707,26 @@ version="${default.test.jboss-version}" destdir="${build.resources}/aop/simpleejb/META-INF"/> </ejbdoclet> + + + <!-- cache test --> + <mkdir dir="${build.resources}/cache/bean/META-INF"/> + <ejbdoclet destdir="${build.gen-src}" + ejbspec="2.0" + excludedtags="@version,@author"> + <fileset dir="${source.java}"> + <include name="org/jboss/test/cache/bean/*Bean.java"/> + </fileset> + <remoteinterface/> + <homeinterface/> + <deploymentdescriptor xmlencoding="UTF-8" + destdir="${build.resources}/cache/bean/META-INF"/> + <jboss xmlencoding="UTF-8" + version="${default.test.jboss-version}" + destdir="${build.resources}/cache/bean/META-INF"/> + </ejbdoclet> + + </target> <target name="compile-mbean-sources" depends="init" unless="noxdoclet"> @@ -812,6 +832,7 @@ <call target="_output:threading"/> <call target="_output:deadlock"/> <call target="_output:aop"/> + <call target="_output:cache"/> <call target="_output:pooled"/> <call target="_output:testbean"/> <call target="_output:testbeancluster"/> @@ -2344,6 +2365,44 @@ </jar> </target> + + + + + <!-- cache test --> + <target name="_output:cache" depends="_output:support"> + + <!-- build cachetest.jar --> + <jar jarfile="${build.lib}/cachetest.jar" + manifest="${build.etc}/manifest.mf"> + <fileset dir="${build.classes}"> + <patternset refid="common.test.client.classes"/> + <include name="org/jboss/test/cache/test/**"/> + </fileset> + <fileset dir="${build.resources}/cache"> + <include name="*.*"/> + </fileset> + </jar> + + <!-- build bean.jar --> + <jar jarfile="${build.lib}/bean.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/cache/bean/"/> + </fileset> + <metainf dir="${build.resources}/cache/bean/META-INF/"/> + </jar> + + + <!-- build cachetest.sar --> + <jar jarfile="${build.lib}/cachetest.sar"> + <fileset dir="${build.resources}/cache"> + <include name="**/jboss-service.xml"/> + </fileset> + </jar> + + </target> + + <!-- pooled test --> <target name="_output:pooled" depends="_output:support"> |
From: Scott M S. <st...@us...> - 2003-04-30 00:08:01
|
User: starksm Date: 03/04/29 17:08:00 Modified: . Tag: Branch_3_2 build.xml Log: Update for the user2-xmbean.sar target Revision Changes Path No revision No revision 1.165.2.61 +15 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.60 retrieving revision 1.165.2.61 diff -u -r1.165.2.60 -r1.165.2.61 --- build.xml 27 Apr 2003 22:12:38 -0000 1.165.2.60 +++ build.xml 30 Apr 2003 00:07:58 -0000 1.165.2.61 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.60 2003/04/27 22:12:38 jboynes Exp $ --> +<!-- $Id: build.xml,v 1.165.2.61 2003/04/30 00:07:58 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -2204,9 +2204,22 @@ <include name="org/jboss/test/jmx/xmbean/*.class"/> </fileset> <fileset dir="${build.resources}/jmx/xmbean"> - <include name="**/*.xml"/> + <include name="**/User.xml"/> + </fileset> + </jar> + + <!--xmbean persistence tests --> + <jar jarfile="${build.lib}/user2-xmbean.sar"> + <metainf dir="${build.resources}/jmx/xmbean/user2" /> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/jmx/xmbean/User2.class"/> </fileset> </jar> + <copy todir="${build.lib}"> + <fileset dir="${build.resources}/jmx/xmbean"> + <include name="RemoveUser2Store.bsh"/> + </fileset> + </copy> <!-- Tests of xmbeans with custom interceptors --> <jar jarfile="${build.lib}/interceptors-xmbean.sar"> |
From: Bela B. <be...@us...> - 2003-04-30 02:25:53
|
User: belaban Date: 03/04/29 19:25:52 Modified: . build.xml Log: added a couple of JARs for testing TreeCache Revision Changes Path 1.244 +23 -4 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.243 retrieving revision 1.244 diff -u -r1.243 -r1.244 --- build.xml 29 Apr 2003 06:13:53 -0000 1.243 +++ build.xml 30 Apr 2003 02:25:51 -0000 1.244 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.243 2003/04/29 06:13:53 belaban Exp $ --> +<!-- $Id: build.xml,v 1.244 2003/04/30 02:25:51 belaban Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -2393,12 +2393,31 @@ </jar> - <!-- build cachetest.sar --> - <jar jarfile="${build.lib}/cachetest.sar"> + <!-- build transient-cachetest.sar --> + <jar jarfile="${build.lib}/transient-cachetest.sar"> <fileset dir="${build.resources}/cache"> - <include name="**/jboss-service.xml"/> + <include name="**/transient*-service.xml"/> + <include name="**/*-aop.xml"/> </fileset> </jar> + + <!-- build async repl cachetest.sar --> + <jar jarfile="${build.lib}/repl-async-cachetest.sar"> + <fileset dir="${build.resources}/cache"> + <include name="**/*async*-service.xml"/> + <include name="**/*-aop.xml"/> + </fileset> + </jar> + + + <!-- build sync repl cachetest.sar --> + <jar jarfile="${build.lib}/repl-sync-cachetest.sar"> + <fileset dir="${build.resources}/cache"> + <include name="**/repl-sync-cache-service.xml"/> + <include name="**/*-aop.xml"/> + </fileset> + </jar> + </target> |
From: Bill B. <pat...@us...> - 2003-05-01 19:33:36
|
User: patriot1burke Date: 03/05/01 12:33:35 Modified: . build.xml Log: aspects move Revision Changes Path 1.245 +2 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.244 retrieving revision 1.245 diff -u -r1.244 -r1.245 --- build.xml 30 Apr 2003 02:25:51 -0000 1.244 +++ build.xml 1 May 2003 19:33:34 -0000 1.245 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.244 2003/04/30 02:25:51 belaban Exp $ --> +<!-- $Id: build.xml,v 1.245 2003/05/01 19:33:34 patriot1burke Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -124,7 +124,7 @@ <pathelement path="${jboss.management.lib}/jboss-management.jar"/> <pathelement path="${jboss.iiop.lib}/jboss-iiop-client.jar"/> <pathelement path="${jboss.varia.lib}/autonumber-plugin.jar"/> - <pathelement path="${jboss.varia.lib}/aop-plugin.jar"/> + <pathelement path="${jboss.aspects.lib}/jboss-aspects.jar"/> <!-- | This could be a mistake. Perhaps, though, it would be a good |
From: Adrian B. <ej...@us...> - 2003-05-02 01:25:47
|
User: ejort Date: 03/05/01 18:25:46 Modified: . build.xml Log: Don't filter jar files, this corrupts the soap jar in the web test Revision Changes Path 1.246 +8 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.245 retrieving revision 1.246 diff -u -r1.245 -r1.246 --- build.xml 1 May 2003 19:33:34 -0000 1.245 +++ build.xml 2 May 2003 01:25:45 -0000 1.246 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.245 2003/05/01 19:33:34 patriot1burke Exp $ --> +<!-- $Id: build.xml,v 1.246 2003/05/02 01:25:45 ejort Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -172,6 +172,13 @@ <property name="builduid" value="${TIMENOW}"/> <property name="results_web" value="http://users.jboss.org/~starksm/HEAD"/> + <patternset id="compile-resources.filter.pattern"> + <include name="**/*"/> + <exclude name="**/*.jar"/> + </patternset> + <patternset id="compile-resources.pattern"> + <include name="**/*.jar"/> + </patternset> <!-- Classpath to build and run the tests --> <path id="tests.classpath"> |
From: Bela B. <be...@us...> - 2003-05-02 06:35:44
|
User: belaban Date: 03/05/01 23:35:43 Modified: . build.xml Log: modified cachtest.jar and cachetest.sar files Revision Changes Path 1.247 +7 -35 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.246 retrieving revision 1.247 diff -u -r1.246 -r1.247 --- build.xml 2 May 2003 01:25:45 -0000 1.246 +++ build.xml 2 May 2003 06:35:43 -0000 1.247 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.246 2003/05/02 01:25:45 ejort Exp $ --> +<!-- $Id: build.xml,v 1.247 2003/05/02 06:35:43 belaban Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -2376,53 +2376,25 @@ - <!-- cache test --> + <!-- cache JARs --> <target name="_output:cache" depends="_output:support"> <!-- build cachetest.jar --> <jar jarfile="${build.lib}/cachetest.jar" - manifest="${build.etc}/manifest.mf"> + manifest="${build.etc}/manifest.mf" > <fileset dir="${build.classes}"> <patternset refid="common.test.client.classes"/> - <include name="org/jboss/test/cache/test/**"/> - </fileset> - <fileset dir="${build.resources}/cache"> - <include name="*.*"/> - </fileset> - </jar> - - <!-- build bean.jar --> - <jar jarfile="${build.lib}/bean.jar"> - <fileset dir="${build.classes}"> - <include name="org/jboss/test/cache/bean/"/> - </fileset> - <metainf dir="${build.resources}/cache/bean/META-INF/"/> - </jar> - - - <!-- build transient-cachetest.sar --> - <jar jarfile="${build.lib}/transient-cachetest.sar"> - <fileset dir="${build.resources}/cache"> - <include name="**/transient*-service.xml"/> - <include name="**/*-aop.xml"/> - </fileset> - </jar> - - <!-- build async repl cachetest.sar --> - <jar jarfile="${build.lib}/repl-async-cachetest.sar"> - <fileset dir="${build.resources}/cache"> - <include name="**/*async*-service.xml"/> - <include name="**/*-aop.xml"/> + <include name="org/jboss/test/cache/**/*.java"/> </fileset> </jar> - - <!-- build sync repl cachetest.sar --> - <jar jarfile="${build.lib}/repl-sync-cachetest.sar"> + <!-- build cachetest.sar --> + <jar jarfile="${build.lib}/cachetest.sar"> <fileset dir="${build.resources}/cache"> <include name="**/repl-sync-cache-service.xml"/> <include name="**/*-aop.xml"/> </fileset> + <metainf dir="${build.resources}/cache/bean/META-INF/"/> </jar> |
From: Adrian B. <ej...@us...> - 2003-05-03 17:10:33
|
User: ejort Date: 03/05/03 10:10:32 Modified: . build.xml Log: Fix the Optimistic lock test by deploying a uuid keygenerator Revision Changes Path 1.248 +2 -3 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.247 retrieving revision 1.248 diff -u -r1.247 -r1.248 --- build.xml 2 May 2003 06:35:43 -0000 1.247 +++ build.xml 3 May 2003 17:10:31 -0000 1.248 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.247 2003/05/02 06:35:43 belaban Exp $ --> +<!-- $Id: build.xml,v 1.248 2003/05/03 17:10:31 ejort Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -1557,7 +1557,7 @@ <include name="org/jboss/test/jca/ejb/**"/> </fileset> <fileset dir="${build.resources}/jca"> - <include name="**/*.xml"/> + <include name="META-INF/*.xml"/> </fileset> </jar> @@ -1637,7 +1637,6 @@ <exclude name="org/jboss/test/jmx/mbean*/**"/> </fileset> <fileset dir="${build.resources}/jmx"> - <include name="*.*"/> <include name="META-INF/*.*"/> </fileset> </jar> |
From: Adrian B. <ej...@us...> - 2003-05-03 23:00:50
|
User: ejort Date: 03/05/03 16:00:49 Modified: . build.xml Log: Add client policies so the test target can run, also fix the aop remoting in the main testsuite (temporary solution) Revision Changes Path 1.249 +7 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.248 retrieving revision 1.249 diff -u -r1.248 -r1.249 --- build.xml 3 May 2003 17:10:31 -0000 1.248 +++ build.xml 3 May 2003 23:00:48 -0000 1.249 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.248 2003/05/03 17:10:31 ejort Exp $ --> +<!-- $Id: build.xml,v 1.249 2003/05/03 23:00:48 ejort Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -3483,6 +3483,10 @@ jvm="${junit.jvm}"> <jvmarg value="${junit.jvm.options}"/> + <!-- FIXME: The security manager is required for AOP remoting? --> + <!-- FIXME: We probably want to run all tests against the client jars? --> + <jvmarg value="-Djava.security.manager"/> + <jvmarg value="-Djava.security.policy==${build.resources}/client.policy"/> <sysproperty key="jbosstest.deploy.dir" file="${build.lib}"/> <sysproperty key="build.log" value="${build.log}"/> <sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/> @@ -4695,6 +4699,8 @@ <jvmarg value="-Xdebug"/> <jvmarg value="-Xnoagent"/--> <jvmarg value="${junit.jvm.options}"/> + <jvmarg value="-Djava.security.manager"/> + <jvmarg value="-Djava.security.policy==${build.resources}/client.policy"/> <sysproperty key="jbosstest.deploy.dir" file="${build.lib}"/> <sysproperty key="build.log" value="${build.log}"/> <sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/> |
From: Scott M S. <st...@us...> - 2003-05-04 19:30:27
|
User: starksm Date: 03/05/04 12:30:25 Modified: . Tag: Branch_3_2 build.xml Log: Update the security-proxy.jar target Revision Changes Path No revision No revision 1.165.2.62 +5 -10 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.61 retrieving revision 1.165.2.62 diff -u -r1.165.2.61 -r1.165.2.62 --- build.xml 30 Apr 2003 00:07:58 -0000 1.165.2.61 +++ build.xml 4 May 2003 19:30:23 -0000 1.165.2.62 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.61 2003/04/30 00:07:58 starksm Exp $ --> +<!-- $Id: build.xml,v 1.165.2.62 2003/05/04 19:30:23 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -3020,22 +3020,17 @@ <!-- build security-proxy.jar --> <jar jarfile="${build.lib}/security-proxy.jar"> <fileset dir="${build.classes}"> - <include name="org/jboss/test/security/ejb/EntityBeanImpl.class"/> <include name="org/jboss/test/security/ejb/IOStatelessSessionBean.class"/> <include name="org/jboss/test/security/ejb/IOStatefulSessionBean.class"/> - <include name="org/jboss/test/security/interfaces/Entity.class"/> - <include name="org/jboss/test/security/interfaces/EntityHome.class"/> <include name="org/jboss/test/security/interfaces/IOSession.class"/> <include name="org/jboss/test/security/interfaces/IOSessionHome.class"/> - <include name="org/jboss/test/security/proxy/EntitySecurityProxy.class"/> + <include name="org/jboss/test/security/interfaces/ReadAccessException.class"/> <include name="org/jboss/test/security/proxy/SessionSecurityProxy.class"/> </fileset> - <fileset dir="${build.resources}/security-spec"> - <include name="**/ejb-jar.xml" /> - <include name="**/jboss.xml" /> - <include name="users.properties"/> - <include name="roles.properties"/> + <fileset dir="${build.resources}/security-proxy"> + <include name="*.properties" /> </fileset> + <metainf dir="${build.resources}/security-proxy/META-INF" /> </jar> <!-- build securitymgr-ejb.jar --> |
From: Bill B. <pat...@us...> - 2003-05-05 21:23:17
|
User: patriot1burke Date: 03/05/05 14:23:16 Modified: . build.xml Log: tx cache testing Revision Changes Path 1.250 +14 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.249 retrieving revision 1.250 diff -u -r1.249 -r1.250 --- build.xml 3 May 2003 23:00:48 -0000 1.249 +++ build.xml 5 May 2003 21:23:12 -0000 1.250 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.249 2003/05/03 23:00:48 ejort Exp $ --> +<!-- $Id: build.xml,v 1.250 2003/05/05 21:23:12 patriot1burke Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -2289,7 +2289,6 @@ <!-- aop test --> <target name="_output:aop" depends="_output:support"> <!-- <mkdir dir="${build.lib}"/> --> - <!-- build aopest.jar --> <jar jarfile="${build.lib}/aoptest.jar" manifest="${build.etc}/manifest.mf"> @@ -2358,6 +2357,8 @@ <include name="org/jboss/test/aop/bean/TxLockTesterMBean.class"/> <include name="org/jboss/test/aop/bean/VersionedObjectTester.class"/> <include name="org/jboss/test/aop/bean/VersionedObjectTesterMBean.class"/> + <include name="org/jboss/test/aop/bean/CacheTester.class"/> + <include name="org/jboss/test/aop/bean/CacheTesterMBean.class"/> <include name="org/jboss/test/aop/bean/BeforeInterceptor.class"/> <include name="org/jboss/test/aop/bean/AfterInterceptor.class"/> </fileset> @@ -4515,6 +4516,17 @@ </junit> </target> + + + <target name="run.aop.cluster.test" depends="init"> + <java classname="org.jboss.test.aop.standalone.ClusterCacheTester" fork="yes" dir="."> + <classpath> + <pathelement location="${build.classes}"/> + <pathelement location="${build.resources}"/> + <path refid="dependentmodule.classpath"/> + </classpath> + </java> + </target> <!-- | Run testcases in a single directory by specifing the test directory |
From: Bill B. <pat...@us...> - 2003-05-05 21:29:29
|
User: patriot1burke Date: 03/05/05 14:29:29 Modified: . build.xml Log: tx cache testing Revision Changes Path 1.251 +2 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.250 retrieving revision 1.251 diff -u -r1.250 -r1.251 --- build.xml 5 May 2003 21:23:12 -0000 1.250 +++ build.xml 5 May 2003 21:29:26 -0000 1.251 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.250 2003/05/05 21:23:12 patriot1burke Exp $ --> +<!-- $Id: build.xml,v 1.251 2003/05/05 21:29:26 patriot1burke Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -4519,7 +4519,7 @@ <target name="run.aop.cluster.test" depends="init"> - <java classname="org.jboss.test.aop.standalone.ClusterCacheTester" fork="yes" dir="."> + <java classname="org.jboss.test.aop.nojunit.ClusterCacheTester" fork="yes" dir="."> <classpath> <pathelement location="${build.classes}"/> <pathelement location="${build.resources}"/> |
From: Bela B. <be...@us...> - 2003-05-05 22:14:52
|
User: belaban Date: 03/05/05 15:14:51 Modified: . build.xml Log: Revision Changes Path 1.252 +5 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.251 retrieving revision 1.252 diff -u -r1.251 -r1.252 --- build.xml 5 May 2003 21:29:26 -0000 1.251 +++ build.xml 5 May 2003 22:14:50 -0000 1.252 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.251 2003/05/05 21:29:26 patriot1burke Exp $ --> +<!-- $Id: build.xml,v 1.252 2003/05/05 22:14:50 belaban Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -2384,11 +2384,13 @@ manifest="${build.etc}/manifest.mf" > <fileset dir="${build.classes}"> <patternset refid="common.test.client.classes"/> - <include name="org/jboss/test/cache/**/*.java"/> + <include name="org/jboss/test/cache/bean/TreeCacheTester*.class"/> </fileset> + <metainf dir="${build.resources}/cache/META-INF/"/> </jar> <!-- build cachetest.sar --> + <!-- <jar jarfile="${build.lib}/cachetest.sar"> <fileset dir="${build.resources}/cache"> <include name="**/repl-sync-cache-service.xml"/> @@ -2396,6 +2398,7 @@ </fileset> <metainf dir="${build.resources}/cache/bean/META-INF/"/> </jar> + --> </target> |
From: Bela B. <be...@us...> - 2003-05-05 22:21:42
|
User: belaban Date: 03/05/05 15:21:40 Modified: . build.xml Log: Revision Changes Path 1.253 +5 -5 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.252 retrieving revision 1.253 diff -u -r1.252 -r1.253 --- build.xml 5 May 2003 22:14:50 -0000 1.252 +++ build.xml 5 May 2003 22:21:38 -0000 1.253 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.252 2003/05/05 22:14:50 belaban Exp $ --> +<!-- $Id: build.xml,v 1.253 2003/05/05 22:21:38 belaban Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -717,20 +717,20 @@ <!-- cache test --> - <mkdir dir="${build.resources}/cache/bean/META-INF"/> + <mkdir dir="${build.resources}/cache/META-INF"/> <ejbdoclet destdir="${build.gen-src}" ejbspec="2.0" excludedtags="@version,@author"> <fileset dir="${source.java}"> - <include name="org/jboss/test/cache/bean/*Bean.java"/> + <include name="org/jboss/test/cache/bean/TreeCache*Bean.java"/> </fileset> <remoteinterface/> <homeinterface/> <deploymentdescriptor xmlencoding="UTF-8" - destdir="${build.resources}/cache/bean/META-INF"/> + destdir="${build.resources}/cache/META-INF"/> <jboss xmlencoding="UTF-8" version="${default.test.jboss-version}" - destdir="${build.resources}/cache/bean/META-INF"/> + destdir="${build.resources}/cache/META-INF"/> </ejbdoclet> |
From: David J. <d_j...@us...> - 2003-05-06 02:40:14
|
User: d_jencks Date: 03/05/05 19:40:12 Modified: . build.xml Log: Compilation is good Revision Changes Path 1.254 +2 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.253 retrieving revision 1.254 diff -u -r1.253 -r1.254 --- build.xml 5 May 2003 22:21:38 -0000 1.253 +++ build.xml 6 May 2003 02:40:12 -0000 1.254 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.253 2003/05/05 22:21:38 belaban Exp $ --> +<!-- $Id: build.xml,v 1.254 2003/05/06 02:40:12 d_jencks Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -722,7 +722,7 @@ ejbspec="2.0" excludedtags="@version,@author"> <fileset dir="${source.java}"> - <include name="org/jboss/test/cache/bean/TreeCache*Bean.java"/> + <include name="org/jboss/test/cache/bean/*Bean.java"/> </fileset> <remoteinterface/> <homeinterface/> |
From: Scott M S. <st...@us...> - 2003-05-07 11:04:49
|
User: starksm Date: 03/05/07 04:04:48 Modified: . Tag: Branch_3_2 build.xml Log: Add a naming-readonly.sar target Revision Changes Path No revision No revision 1.165.2.63 +13 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.62 retrieving revision 1.165.2.63 diff -u -r1.165.2.62 -r1.165.2.63 --- build.xml 4 May 2003 19:30:23 -0000 1.165.2.62 +++ build.xml 7 May 2003 11:04:47 -0000 1.165.2.63 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.62 2003/05/04 19:30:23 starksm Exp $ --> +<!-- $Id: build.xml,v 1.165.2.63 2003/05/07 11:04:47 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -2332,6 +2332,18 @@ </fileset> <fileset dir="${build.resources}/naming/ear"> <include name="META-INF/*.xml"/> + </fileset> + </jar> + + <jar destfile="${build.lib}/naming-readonly.sar"> + <metainf dir="${build.resources}/naming/services"> + <include name="jboss-service.xml" /> + </metainf> + <fileset dir="${build.resources}/naming/services"> + <include name="naming-xmbean.xml"/> + </fileset> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/naming/interceptors/*" /> </fileset> </jar> </target> |
From: Adrian B. <ej...@us...> - 2003-05-08 17:49:29
|
User: ejort Date: 03/05/08 10:49:28 Modified: . build.xml Log: Standup test for call logging Revision Changes Path 1.255 +8 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.254 retrieving revision 1.255 diff -u -r1.254 -r1.255 --- build.xml 6 May 2003 02:40:12 -0000 1.254 +++ build.xml 8 May 2003 17:49:27 -0000 1.255 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.254 2003/05/06 02:40:12 d_jencks Exp $ --> +<!-- $Id: build.xml,v 1.255 2003/05/08 17:49:27 ejort Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -2308,6 +2308,13 @@ <include name="org/jboss/test/aop/simpleejb/"/> </fileset> <metainf dir="${build.resources}/aop/simpleejb/META-INF/"/> + </jar> + + <jar jarfile="${build.lib}/aop-call-logging.aop"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/aop/test/CallLoggingUnitTestCase.class"/> + </fileset> + <metainf dir="${build.resources}/aop/calllogging/META-INF/"/> </jar> <jar jarfile="${build.lib}/aoptest.aop" |
From: Adrian B. <ej...@us...> - 2003-05-09 03:55:26
|
User: ejort Date: 03/05/08 20:55:25 Modified: . build.xml Log: Standup test for invocation logging Revision Changes Path 1.256 +20 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.255 retrieving revision 1.256 diff -u -r1.255 -r1.256 --- build.xml 8 May 2003 17:49:27 -0000 1.255 +++ build.xml 9 May 2003 03:55:24 -0000 1.256 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.255 2003/05/08 17:49:27 ejort Exp $ --> +<!-- $Id: build.xml,v 1.256 2003/05/09 03:55:24 ejort Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -2315,6 +2315,25 @@ <include name="org/jboss/test/aop/test/CallLoggingUnitTestCase.class"/> </fileset> <metainf dir="${build.resources}/aop/calllogging/META-INF/"/> + </jar> + + <jar jarfile="${build.lib}/aop-invocationlog.aop"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/aop/test/InvocationLogUnitTestCase.class"/> + <include name="org/jboss/test/aop/bean/POJO.class"/> + <include name="org/jboss/test/aop/bean/SomeException.class"/> + </fileset> + <fileset dir="${build.resources}/aop/invocationlog"> + <include name="META-INF/jboss-aop.xml"/> + </fileset> + </jar> + <jar jarfile="${build.lib}/aop-invocationlog.sar"> + <fileset dir="${build.lib}"> + <include name="aop-invocationlog.aop"/> + </fileset> + <fileset dir="${build.resources}/aop/invocationlog"> + <include name="META-INF/jboss-service.xml"/> + </fileset> </jar> <jar jarfile="${build.lib}/aoptest.aop" |
From: Harald G. <har...@us...> - 2003-05-09 15:25:58
|
User: harald_gliebe Date: 03/05/09 08:25:55 Modified: . build.xml Log: TreeCacheAOP tests Revision Changes Path 1.257 +10 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.256 retrieving revision 1.257 diff -u -r1.256 -r1.257 --- build.xml 9 May 2003 03:55:24 -0000 1.256 +++ build.xml 9 May 2003 15:25:54 -0000 1.257 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.256 2003/05/09 03:55:24 ejort Exp $ --> +<!-- $Id: build.xml,v 1.257 2003/05/09 15:25:54 harald_gliebe Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -2410,7 +2410,7 @@ manifest="${build.etc}/manifest.mf" > <fileset dir="${build.classes}"> <patternset refid="common.test.client.classes"/> - <include name="org/jboss/test/cache/bean/TreeCacheTester*.class"/> + <include name="org/jboss/test/cache/bean/*.class"/> </fileset> <metainf dir="${build.resources}/cache/META-INF/"/> </jar> @@ -2426,6 +2426,14 @@ </jar> --> + <!-- build cachetest.aop --> + <jar jarfile="${build.lib}/cachetest.aop" + manifest="${build.etc}/manifest.mf" > + <fileset dir="${build.classes}"> + <include name="org/jboss/test/cache/bean/aop/*.class"/> + </fileset> + <metainf dir="${build.resources}/cache/aop/META-INF/"/> + </jar> </target> |
From: David J. <d_j...@us...> - 2003-05-09 20:49:17
|
User: d_jencks Date: 03/05/09 13:49:14 Modified: . build.xml Log: Ejb clustering over remoting. Removed non-remoting invoker configs, but not the classes Revision Changes Path 1.258 +2 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.257 retrieving revision 1.258 diff -u -r1.257 -r1.258 --- build.xml 9 May 2003 15:25:54 -0000 1.257 +++ build.xml 9 May 2003 20:49:14 -0000 1.258 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.257 2003/05/09 15:25:54 harald_gliebe Exp $ --> +<!-- $Id: build.xml,v 1.258 2003/05/09 20:49:14 d_jencks Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -3657,7 +3657,7 @@ <fileset dir="${build.classes}"> - <include name="org/jboss/test/testbeancluster/**/*UnitTestCase*.class"/> + <include name="org/jboss/test/testbeancluster/**/*UnitTestCaseNew.class"/> </fileset> </batchtest> |
From: Adrian B. <ej...@us...> - 2003-05-12 18:58:10
|
User: ejort Date: 03/05/12 11:58:09 Modified: . build.xml Log: Convert the testsuite to use JBoss remoting rather than the RMIAdaptor Revision Changes Path 1.259 +2 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.258 retrieving revision 1.259 diff -u -r1.258 -r1.259 --- build.xml 9 May 2003 20:49:14 -0000 1.258 +++ build.xml 12 May 2003 18:58:08 -0000 1.259 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.258 2003/05/09 20:49:14 d_jencks Exp $ --> +<!-- $Id: build.xml,v 1.259 2003/05/12 18:58:08 ejort Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -157,7 +157,7 @@ <property name="jbosstest.threadcount" value="5"/> <property name="jbosstest.beancount" value="5"/> - <property name="jbosstest.server.name" value="local"/> + <property name="jbosstest.server.name" value="localhost"/> <property name="jbosstest.data.dir" value="${module.output}/data"/> |
From: Alexey L. <lou...@us...> - 2003-05-15 15:34:17
|
User: loubyansky Date: 03/05/15 08:34:16 Modified: . Tag: Branch_3_2 build.xml Log: added foreign key StackOverflow tests. Revision Changes Path No revision No revision 1.165.2.64 +42 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.63 retrieving revision 1.165.2.64 diff -u -r1.165.2.63 -r1.165.2.64 --- build.xml 7 May 2003 11:04:47 -0000 1.165.2.63 +++ build.xml 15 May 2003 15:34:15 -0000 1.165.2.64 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.63 2003/05/07 11:04:47 starksm Exp $ --> +<!-- $Id: build.xml,v 1.165.2.64 2003/05/15 15:34:15 loubyansky Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -612,6 +612,33 @@ <session/> </ejbdoclet> + <!-- foreign key mapping stack overflow error tests --> + <mkdir dir="${build.resources}/cmp2/fkstackoverflow/META-INF"/> + <ejbdoclet destdir="${build.gen-src}" + ejbspec="2.0" + excludedtags="@version,@author" + mergedir="${source.etc}/cmp2/fkstackoverflow"> + <fileset dir="${source.java}"> + <include name="org/jboss/test/cmp2/fkstackoverflow/ejb/*Bean.java"/> + </fileset> + <remoteinterface/> + <localinterface/> + <homeinterface/> + <localhomeinterface/> + <entitypk/> + <utilobject cacheHomes="true" includeGUID="false"/> + <entitycmp/> + <session/> + <deploymentdescriptor + destdir="${build.resources}/cmp2/fkstackoverflow/META-INF" + validatexml="${validatexml}"/> + <jboss + version="3.2" + xmlencoding="UTF-8" + destdir="${build.resources}/cmp2/fkstackoverflow/META-INF" + validatexml="${validatexml}"/> + </ejbdoclet> + <!-- cmp2 relationship stress tests --> <mkdir dir="${build.resources}/cmp2/cmrstress/META-INF"/> <ejbdoclet destdir="${build.gen-src}" @@ -3259,6 +3286,20 @@ <include name="org/jboss/test/cmp2/fkmapping/**"/> </fileset> <fileset dir="${build.resources}/cmp2/fkmapping"> + <include name="**/*.*"/> + </fileset> + <zipfileset src="${junitejb.junitejb.lib}/junitejb.jar" + includes="net/**/*.*"/> + <zipfileset src="${junit.junit.lib}/junit.jar" + includes="junit/**/*.*"/> + </jar> + + <!-- build cmp2-fkstackoverflow.jar --> + <jar jarfile="${build.lib}/cmp2-fkstackoverflow.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/cmp2/fkstackoverflow/**"/> + </fileset> + <fileset dir="${build.resources}/cmp2/fkstackoverflow"> <include name="**/*.*"/> </fileset> <zipfileset src="${junitejb.junitejb.lib}/junitejb.jar" |