From: Bill B. <pat...@us...> - 2003-03-26 23:44:58
|
User: patriot1burke Date: 03/03/26 15:44:57 Modified: . build.xml Log: versioned objects testing Revision Changes Path 1.229 +5 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.228 retrieving revision 1.229 diff -u -r1.228 -r1.229 --- build.xml 26 Mar 2003 16:58:01 -0000 1.228 +++ build.xml 26 Mar 2003 23:44:54 -0000 1.229 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.228 2003/03/26 16:58:01 igorfie Exp $ --> +<!-- $Id: build.xml,v 1.229 2003/03/26 23:44:54 patriot1burke Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -121,6 +121,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"/> <!-- | This could be a mistake. Perhaps, though, it would be a good @@ -2281,6 +2282,7 @@ <include name="org/jboss/test/aop/bean/NonadvisedPOJO.class"/> <include name="org/jboss/test/aop/bean/POJO*.class"/> <include name="org/jboss/test/aop/bean/TxPOJO.class"/> + <include name="org/jboss/test/aop/bean/VersionedPOJO.class"/> <include name="org/jboss/test/aop/bean/SimpleInterceptor.class"/> <include name="org/jboss/test/aop/bean/SimpleInterceptorFactory.class"/> <include name="org/jboss/test/aop/bean/SimpleBeanInterceptor.class"/> @@ -2303,6 +2305,8 @@ <include name="org/jboss/test/aop/bean/RemotingTesterMBean.class"/> <include name="org/jboss/test/aop/bean/TxTester.class"/> <include name="org/jboss/test/aop/bean/TxTesterMBean.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/BeforeInterceptor.class"/> <include name="org/jboss/test/aop/bean/AfterInterceptor.class"/> </fileset> |
From: Adrian B. <ej...@us...> - 2003-03-29 01:13:48
|
User: ejort Date: 03/03/28 17:13:46 Modified: . build.xml Log: Make running tests on the server easier - based on EJBTestCase from jboss-blocks. To use it, extend ServerSideTestCase rather than JBossTestCase and make sure the test is deployed. See the example org.jboss.test.util.test.ServerSideExampleTestCase Also, put blocks and junit in jboss. No need for the CMP2 tests to include them in their deployments. Revision Changes Path 1.230 +27 -37 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.229 retrieving revision 1.230 diff -u -r1.229 -r1.230 --- build.xml 26 Mar 2003 23:44:54 -0000 1.229 +++ build.xml 29 Mar 2003 01:13:46 -0000 1.230 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.229 2003/03/26 23:44:54 patriot1burke Exp $ --> +<!-- $Id: build.xml,v 1.230 2003/03/29 01:13:46 ejort Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -665,9 +665,6 @@ <fileset dir="${source.java}"> <include name="org/jboss/test/exception/*Bean.java"/> </fileset> - <fileset dir="${jboss.blocks.source.java}"> - <include name="org/jboss/blocks/junit/ejb/EJBTestRunnerBean.java"/> - </fileset> <!--packageSubstitution packages="beans" substituteWith="interfaces"/--> <remoteinterface/> <localinterface/> @@ -828,6 +825,7 @@ <call target="_output:timer"/> <call target="_output:entity"/> <call target="_output:cmpaop"/> + <call target="_output:serverside"/> </parallel> </target> @@ -2879,10 +2877,6 @@ <fileset dir="${build.resources}/cmp2/relationship"> <include name="**/*.*"/> </fileset> - <zipfileset src="${jboss.blocks.lib}/jboss-blocks-junitejb.jar" excludes="META-INF/MANIFEST.MF"/> - <zipfileset src="${jboss.blocks.lib}/jboss-blocks.jar" excludes="META-INF/MANIFEST.MF"/> - <zipfileset src="${junit.junit.lib}/junit.jar" - includes="junit/**/*.*"/> </jar> <!-- build cmp2-readonly.jar --> @@ -2894,10 +2888,6 @@ <fileset dir="${build.resources}/cmp2/readonly"> <include name="**/*.*"/> </fileset> - <zipfileset src="${jboss.blocks.lib}/jboss-blocks-junitejb.jar" excludes="META-INF/MANIFEST.MF"/> - <zipfileset src="${jboss.blocks.lib}/jboss-blocks.jar" excludes="META-INF/MANIFEST.MF"/> - <zipfileset src="${junit.junit.lib}/junit.jar" - includes="junit/**/*.*"/> </jar> <!-- build cmp2-ejbselect.jar --> @@ -2909,10 +2899,6 @@ <fileset dir="${build.resources}/cmp2/ejbselect"> <include name="**/*.*"/> </fileset> - <zipfileset src="${jboss.blocks.lib}/jboss-blocks-junitejb.jar" excludes="META-INF/MANIFEST.MF"/> - <zipfileset src="${jboss.blocks.lib}/jboss-blocks.jar" excludes="META-INF/MANIFEST.MF"/> - <zipfileset src="${junit.junit.lib}/junit.jar" - includes="junit/**/*.*"/> </jar> <!-- build cmr-postcreateswritten.jar --> @@ -2934,10 +2920,6 @@ <fileset dir="${build.resources}/cmp2/simple"> <include name="**/*.*"/> </fileset> - <zipfileset src="${jboss.blocks.lib}/jboss-blocks-junitejb.jar" excludes="META-INF/MANIFEST.MF"/> - <zipfileset src="${jboss.blocks.lib}/jboss-blocks.jar" excludes="META-INF/MANIFEST.MF"/> - <zipfileset src="${junit.junit.lib}/junit.jar" - includes="junit/**/*.*"/> </jar> <!-- build cmp2-commerce.jar --> @@ -2948,10 +2930,6 @@ <fileset dir="${build.resources}/cmp2/commerce"> <include name="**/*.*"/> </fileset> - <zipfileset src="${jboss.blocks.lib}/jboss-blocks-junitejb.jar" excludes="META-INF/MANIFEST.MF"/> - <zipfileset src="${jboss.blocks.lib}/jboss-blocks.jar" excludes="META-INF/MANIFEST.MF"/> - <zipfileset src="${junit.junit.lib}/junit.jar" - includes="junit/**/*.*"/> </jar> <!-- build cmp2-lob.jar --> @@ -2962,10 +2940,6 @@ <fileset dir="${build.resources}/cmp2/lob"> <include name="**/*.*"/> </fileset> - <zipfileset src="${jboss.blocks.lib}/jboss-blocks-junitejb.jar" excludes="META-INF/MANIFEST.MF"/> - <zipfileset src="${jboss.blocks.lib}/jboss-blocks.jar" excludes="META-INF/MANIFEST.MF"/> - <zipfileset src="${junit.junit.lib}/junit.jar" - includes="junit/**/*.*"/> </jar> <!-- build cmp2-optimisticlock.jar --> @@ -2976,10 +2950,6 @@ <fileset dir="${build.resources}/cmp2/optimisticlock"> <include name="**/*.*"/> </fileset> - <zipfileset src="${jboss.blocks.lib}/jboss-blocks-junitejb.jar" excludes="META-INF/MANIFEST.MF"/> - <zipfileset src="${jboss.blocks.lib}/jboss-blocks.jar" excludes="META-INF/MANIFEST.MF"/> - <zipfileset src="${junit.junit.lib}/junit.jar" - includes="junit/**/*.*"/> </jar> </target> @@ -2997,10 +2967,6 @@ <fileset dir="${build.resources}/exception"> <include name="**/*.*"/> </fileset> - <zipfileset src="${jboss.blocks.lib}/jboss-blocks-junitejb.jar" excludes="META-INF/MANIFEST.MF"/> - <zipfileset src="${jboss.blocks.lib}/jboss-blocks.jar" excludes="META-INF/MANIFEST.MF"/> - <zipfileset src="${junit.junit.lib}/junit.jar" - includes="junit/**/*.*"/> </jar> </target> @@ -3240,6 +3206,30 @@ </jar> </target> + <!-- serverside support --> + <target name="_output:serverside" depends="_output:support"> + <!-- build server side service --> + <jar jarfile="${build.lib}/serverside.sar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/JBossTestCase.class"/> + <include name="org/jboss/test/JBossTestServices.class"/> + <include name="org/jboss/test/JBossTestSetup.class"/> + <include name="org/jboss/test/ServerSideTestCase.class"/> + <include name="org/jboss/test/ServerSideTestRunner.class"/> + <include name="org/jboss/test/ServerSideTestRunnerDynamicMBean.class"/> + </fileset> + <fileset dir="${build.resources}/serverside"> + <include name="**"/> + </fileset> + </jar> + + <jar jarfile="${build.lib}/serverside-example.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/util/test/ServerSideExampleUnitTestCase.class"/> + </fileset> + </jar> + </target> + <!--+====================================================================+--> <!--| Documents |--> @@ -4457,7 +4447,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: Bill B. <pat...@us...> - 2003-03-29 04:55:52
|
User: patriot1burke Date: 03/03/28 20:55:52 Modified: . build.xml Log: txlock testing Revision Changes Path 1.231 +4 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.230 retrieving revision 1.231 diff -u -r1.230 -r1.231 --- build.xml 29 Mar 2003 01:13:46 -0000 1.230 +++ build.xml 29 Mar 2003 04:55:51 -0000 1.231 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.230 2003/03/29 01:13:46 ejort Exp $ --> +<!-- $Id: build.xml,v 1.231 2003/03/29 04:55:51 patriot1burke Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -2280,6 +2280,7 @@ <include name="org/jboss/test/aop/bean/NonadvisedPOJO.class"/> <include name="org/jboss/test/aop/bean/POJO*.class"/> <include name="org/jboss/test/aop/bean/TxPOJO.class"/> + <include name="org/jboss/test/aop/bean/TxLockedPOJO.class"/> <include name="org/jboss/test/aop/bean/VersionedPOJO.class"/> <include name="org/jboss/test/aop/bean/SimpleInterceptor.class"/> <include name="org/jboss/test/aop/bean/SimpleInterceptorFactory.class"/> @@ -2303,6 +2304,8 @@ <include name="org/jboss/test/aop/bean/RemotingTesterMBean.class"/> <include name="org/jboss/test/aop/bean/TxTester.class"/> <include name="org/jboss/test/aop/bean/TxTesterMBean.class"/> + <include name="org/jboss/test/aop/bean/TxLockTester.class"/> + <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/BeforeInterceptor.class"/> |
From: Scott M S. <st...@us...> - 2003-03-29 06:49:10
|
User: starksm Date: 03/03/28 22:49:09 Modified: . Tag: Branch_3_2 build.xml Log: Update the xmbean deployment testcase sar Revision Changes Path No revision No revision 1.165.2.49 +11 -7 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.48 retrieving revision 1.165.2.49 diff -u -r1.165.2.48 -r1.165.2.49 --- build.xml 21 Mar 2003 21:28:11 -0000 1.165.2.48 +++ build.xml 29 Mar 2003 06:49:08 -0000 1.165.2.49 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.48 2003/03/21 21:28:11 starksm Exp $ --> +<!-- $Id: build.xml,v 1.165.2.49 2003/03/29 06:49:08 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -1842,12 +1842,18 @@ </fileset> </jar> + <jar jarfile="${build.lib}/testdeploye-util.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/jmx/mbeane/util/*"/> + </fileset> + </jar> <jar jarfile="${build.lib}/testdeploye.sar"> + <metainf dir="${build.resources}/jmx/mbeane/META-INF" /> <fileset dir="${build.classes}"> - <include name="org/jboss/test/jmx/mbeane/**"/> + <include name="org/jboss/test/jmx/mbeane/*"/> </fileset> - <fileset dir="${build.resources}/jmx/mbeane"> - <include name="META-INF/jboss-service.xml"/> + <fileset dir="${build.lib}"> + <include name="testdeploye-util.jar"/> </fileset> </jar> @@ -2160,11 +2166,9 @@ <!--xmbean test deployment--> <jar jarfile="${build.lib}/user-xmbean.sar"> + <metainf dir="${build.resources}/jmx/xmbean/META-INF" /> <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: David J. <d_j...@us...> - 2003-03-29 16:02:28
|
User: d_jencks Date: 03/03/29 08:02:27 Modified: . Tag: Branch_3_2 build.xml Log: restore artificial attributes and make the tests work. user2-xmbean.xml is in a rather non-standard location Revision Changes Path No revision No revision 1.165.2.50 +7 -4 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.49 retrieving revision 1.165.2.50 diff -u -r1.165.2.49 -r1.165.2.50 --- build.xml 29 Mar 2003 06:49:08 -0000 1.165.2.49 +++ build.xml 29 Mar 2003 16:02:26 -0000 1.165.2.50 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.49 2003/03/29 06:49:08 starksm Exp $ --> +<!-- $Id: build.xml,v 1.165.2.50 2003/03/29 16:02:26 d_jencks Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -876,7 +876,7 @@ <target name="compile-mbean-sources" depends="init" unless="noxdoclet"> <taskdef name="jmxdoclet" classname="xdoclet.modules.jmx.JMXDocletTask" classpathref="xdoclet.task.classpath"/> -<echo message="xdoclet.mergedir: ${xdoclet.mergedir}"/> + <mkdir dir="${build.gen-src}"/> <jmxdoclet destdir="${build.gen-src}" force="true" @@ -895,8 +895,8 @@ <target name="compile-xmbean-dds" depends="init" unless="noxdoclet"> <taskdef name="jmxdoclet" classname="xdoclet.modules.jmx.JMXDocletTask" classpathref="xdoclet.task.classpath"/> <echo message="xdoclet.mergedir: ${xdoclet.mergedir}"/> - <mkdir dir="${build.resources}/jmx/xmbean/META-INF"/> - <jmxdoclet destdir="${build.resources}/jmx/xmbean/META-INF" + <mkdir dir="${build.resources}/jmx/xmbean"/> + <jmxdoclet destdir="${build.resources}/jmx/xmbean" force="true" excludedtags="@version,@author"> <fileset dir="${source.java}"> @@ -2169,6 +2169,9 @@ <metainf dir="${build.resources}/jmx/xmbean/META-INF" /> <fileset dir="${build.classes}"> <include name="org/jboss/test/jmx/xmbean/*.class"/> + </fileset> + <fileset dir="${build.resources}/jmx/xmbean"> + <include name="**/*.xml"/> </fileset> </jar> |
From: Scott M S. <st...@us...> - 2003-03-31 01:23:36
|
User: starksm Date: 03/03/30 17:23:35 Modified: . Tag: Branch_3_2 build.xml Log: Add the defaultpkg.sar and interceptors-xmbean.sar targets Revision Changes Path No revision No revision 1.165.2.51 +16 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.50 retrieving revision 1.165.2.51 diff -u -r1.165.2.50 -r1.165.2.51 --- build.xml 29 Mar 2003 16:02:26 -0000 1.165.2.50 +++ build.xml 31 Mar 2003 01:23:34 -0000 1.165.2.51 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.50 2003/03/29 16:02:26 d_jencks Exp $ --> +<!-- $Id: build.xml,v 1.165.2.51 2003/03/31 01:23:34 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -1805,6 +1805,13 @@ </fileset> </jar> + <jar jarfile="${build.lib}/defaultpkg.sar"> + <metainf dir="${build.resources}/jmx/default" /> + <fileset dir="${build.classes}"> + <include name="DefaultPkgService*"/> + </fileset> + </jar> + <jar jarfile="${build.lib}/testdeploya.sar"> <fileset dir="${build.classes}"> <include name="org/jboss/test/jmx/mbeana/**"/> @@ -2172,6 +2179,14 @@ </fileset> <fileset dir="${build.resources}/jmx/xmbean"> <include name="**/*.xml"/> + </fileset> + </jar> + + <!-- --> + <jar jarfile="${build.lib}/interceptors-xmbean.sar"> + <metainf dir="${build.resources}/jmx/interceptors" /> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/jmx/interceptors/*.class"/> </fileset> </jar> |
From: Scott M S. <st...@us...> - 2003-03-31 02:53:36
|
User: starksm Date: 03/03/30 18:53:35 Modified: . Tag: Branch_3_2 build.xml Log: Update the results website url Revision Changes Path No revision No revision 1.165.2.52 +2 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.51 retrieving revision 1.165.2.52 diff -u -r1.165.2.51 -r1.165.2.52 --- build.xml 31 Mar 2003 01:23:34 -0000 1.165.2.51 +++ build.xml 31 Mar 2003 02:53:33 -0000 1.165.2.52 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.51 2003/03/31 01:23:34 starksm Exp $ --> +<!-- $Id: build.xml,v 1.165.2.52 2003/03/31 02:53:33 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -4914,7 +4914,7 @@ <param name="os_arch" expression="${os.arch}"/> <param name="os_version" expression="${os.version}"/> <param name="builduid" expression="${TIMENOW}"/> - <param name="results_web" expression="http://users.jboss.org/~starksm/Branch_3_2"/> + <param name="results_web" expression="http://bliss.jboss.org/~starksm/Branch_3_2"/> </style> </target> |
From: David J. <d_j...@us...> - 2003-03-31 06:05:44
|
User: d_jencks Date: 03/03/30 22:05:43 Modified: . Tag: Branch_3_2 build.xml Log: rearrange jca mbeans to a more sensible dependency layout and make changing an attribute on the mcf automatically flush the pool. Revision Changes Path No revision No revision 1.165.2.53 +6 -6 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.52 retrieving revision 1.165.2.53 diff -u -r1.165.2.52 -r1.165.2.53 --- build.xml 31 Mar 2003 02:53:33 -0000 1.165.2.52 +++ build.xml 31 Mar 2003 06:05:40 -0000 1.165.2.53 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.52 2003/03/31 02:53:33 starksm Exp $ --> +<!-- $Id: build.xml,v 1.165.2.53 2003/03/31 06:05:40 d_jencks Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -1713,13 +1713,10 @@ <mkdir dir="${build.lib}"/> <!-- build test jdbc driver with config inside sar --> - <jar jarfile="${build.lib}/jbosstestdriver.sar"> + <jar jarfile="${build.lib}/jbosstestdriver.jar"> <fileset dir="${build.classes}"> <include name="org/jboss/test/jca/jdbc/**"/> </fileset> - <fileset dir="${build.resources}/jca/jdbc"> - <include name="META-INF/jboss-service.xml"/> - </fileset> </jar> @@ -1742,7 +1739,10 @@ <!-- test adapter config --> <copy todir="${build.lib}" filtering="no"> <fileset dir="${build.resources}/jca/adapter"> - <include name="testadapter-service.xml"/> + <include name="testadapter-ds.xml"/> + </fileset> + <fileset dir="${build.resources}/jca/jdbc"> + <include name="testdriver-ds.xml"/> </fileset> </copy> |
From: Bill B. <pat...@us...> - 2003-03-31 21:56:07
|
User: patriot1burke Date: 03/03/31 13:55:58 Modified: . build.xml Log: added some exception testing to AOP Revision Changes Path 1.232 +3 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.231 retrieving revision 1.232 diff -u -r1.231 -r1.232 --- build.xml 29 Mar 2003 04:55:51 -0000 1.231 +++ build.xml 31 Mar 2003 21:55:41 -0000 1.232 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.231 2003/03/29 04:55:51 patriot1burke Exp $ --> +<!-- $Id: build.xml,v 1.232 2003/03/31 21:55:41 patriot1burke Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -2277,7 +2277,9 @@ <jar jarfile="${build.lib}/aoptest.aop" manifest="${build.etc}/manifest.mf"> <fileset dir="${build.classes}"> + <include name="org/jboss/test/aop/bean/NoInterceptorsPOJO*.class"/> <include name="org/jboss/test/aop/bean/NonadvisedPOJO.class"/> + <include name="org/jboss/test/aop/bean/SomeException.class"/> <include name="org/jboss/test/aop/bean/POJO*.class"/> <include name="org/jboss/test/aop/bean/TxPOJO.class"/> <include name="org/jboss/test/aop/bean/TxLockedPOJO.class"/> |
From: Bill B. <pat...@us...> - 2003-04-02 03:29:13
|
User: patriot1burke Date: 03/04/01 19:29:12 Modified: . build.xml Log: security testing for AOP Revision Changes Path 1.233 +8 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.232 retrieving revision 1.233 diff -u -r1.232 -r1.233 --- build.xml 31 Mar 2003 21:55:41 -0000 1.232 +++ build.xml 2 Apr 2003 03:29:12 -0000 1.233 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.232 2003/03/31 21:55:41 patriot1burke Exp $ --> +<!-- $Id: build.xml,v 1.233 2003/04/02 03:29:12 patriot1burke Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -2279,6 +2279,7 @@ <fileset dir="${build.classes}"> <include name="org/jboss/test/aop/bean/NoInterceptorsPOJO*.class"/> <include name="org/jboss/test/aop/bean/NonadvisedPOJO.class"/> + <include name="org/jboss/test/aop/bean/SecuredPOJO.class"/> <include name="org/jboss/test/aop/bean/SomeException.class"/> <include name="org/jboss/test/aop/bean/POJO*.class"/> <include name="org/jboss/test/aop/bean/TxPOJO.class"/> @@ -2304,6 +2305,8 @@ <include name="org/jboss/test/aop/bean/AOPTesterMBean.class"/> <include name="org/jboss/test/aop/bean/RemotingTester.class"/> <include name="org/jboss/test/aop/bean/RemotingTesterMBean.class"/> + <include name="org/jboss/test/aop/bean/SecurityTester.class"/> + <include name="org/jboss/test/aop/bean/SecurityTesterMBean.class"/> <include name="org/jboss/test/aop/bean/TxTester.class"/> <include name="org/jboss/test/aop/bean/TxTesterMBean.class"/> <include name="org/jboss/test/aop/bean/TxLockTester.class"/> @@ -2312,6 +2315,10 @@ <include name="org/jboss/test/aop/bean/VersionedObjectTesterMBean.class"/> <include name="org/jboss/test/aop/bean/BeforeInterceptor.class"/> <include name="org/jboss/test/aop/bean/AfterInterceptor.class"/> + </fileset> + <fileset dir="${build.resources}/aop"> + <include name="users.properties"/> + <include name="roles.properties"/> </fileset> <fileset dir="${build.resources}/aop"> <include name="**/jboss-service.xml"/> |
From: Stephen C. <sc...@us...> - 2003-04-04 16:05:06
|
User: scoy Date: 03/04/04 08:05:05 Modified: . Tag: Branch_3_2 build.xml Log: New CMR stress test Revision Changes Path No revision No revision 1.165.2.54 +41 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.53 retrieving revision 1.165.2.54 diff -u -r1.165.2.53 -r1.165.2.54 --- build.xml 31 Mar 2003 06:05:40 -0000 1.165.2.53 +++ build.xml 4 Apr 2003 16:04:51 -0000 1.165.2.54 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.53 2003/03/31 06:05:40 d_jencks Exp $ --> +<!-- $Id: build.xml,v 1.165.2.54 2003/04/04 16:04:51 scoy Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -612,6 +612,31 @@ <session/> </ejbdoclet> + <!-- cmp2 relationship stress tests --> + <mkdir dir="${build.resources}/cmp2/cmrstress/META-INF"/> + <ejbdoclet destdir="${build.gen-src}" + ejbspec="2.0" + excludedtags="@version,@author" + mergedir="${source.resources}/cmp2/cmrstress"> + <fileset dir="${source.java}"> + <include name="org/jboss/test/cmp2/cmrstress/ejb/*Bean.java"/> + </fileset> + <packageSubstitution packages="ejb" substituteWith="interfaces"/> + <remoteinterface/> + <localinterface/> + <homeinterface/> + <localhomeinterface/> + <utilobject cacheHomes="true" includeGUID="false" kind="physical" /> + <deploymentdescriptor xmlencoding ="UTF-8" + destdir="${build.resources}/cmp2/cmrstress/META-INF"/> + <jboss xmlencoding="UTF-8" + version="3.0" + destdir="${build.resources}/cmp2/cmrstress/META-INF" + datasource="java:/DefaultDS" + datasourceMapping ="Hypersonic SQL" + /> + </ejbdoclet> + <!--undeploy of broken packages--> <mkdir dir="${build.resources}/jmx/undeploy/META-INF"/> <ejbdoclet destdir="${build.gen-src}" @@ -3226,6 +3251,20 @@ <include name="**/*.*"/> </fileset> </jar> + + <!-- build cmp2-cmrstress.jar --> + <jar jarfile="${build.lib}/cmp2-cmrstress.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/cmp2/cmrstress/**"/> + </fileset> + <fileset dir="${build.resources}/cmp2/cmrstress"> + <include name="**/*.*"/> + </fileset> + <zipfileset src="${junitejb.junitejb.lib}/junitejb.jar" + includes="net/**/*.*"/> + <zipfileset src="${junit.junit.lib}/junit.jar" + includes="junit/**/*.*"/> + </jar> </target> <!-- exception tests --> @@ -4637,6 +4676,7 @@ <include name="**/bank/**/*StressTestCase.class"/> <include name="**/bmp/**/*UnitTestCase.class"/> <include name="**/cmp2/**/*UnitTestCase.class"/> + <include name="**/cmp2/**/*StressTestCase.class"/> <include name="**/dbtest/**/*UnitTestCase.class"/> <include name="**/deadlock/**/*StressTestCase.class"/> <include name="**/entityexc/**/*UnitTestCase.class"/> |
From: Scott M S. <st...@us...> - 2003-04-07 08:06:57
|
User: starksm Date: 03/04/07 01:06:56 Modified: . Tag: Branch_3_2 build.xml Log: Add the customized naming service xmbean to the interceptors-xmbean test jar Revision Changes Path No revision No revision 1.165.2.55 +12 -3 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.54 retrieving revision 1.165.2.55 diff -u -r1.165.2.54 -r1.165.2.55 --- build.xml 4 Apr 2003 16:04:51 -0000 1.165.2.54 +++ build.xml 7 Apr 2003 08:06:53 -0000 1.165.2.55 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.54 2003/04/04 16:04:51 scoy Exp $ --> +<!-- $Id: build.xml,v 1.165.2.55 2003/04/07 08:06:53 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -2207,11 +2207,20 @@ </fileset> </jar> - <!-- --> + <!-- Tests of xmbeans with custom interceptors --> <jar jarfile="${build.lib}/interceptors-xmbean.sar"> - <metainf dir="${build.resources}/jmx/interceptors" /> + <metainf dir="${build.resources}/jmx/interceptors"> + <include name="jboss-service.xml" /> + <include name="secured-xmbean.xml" /> + <include name="naming-xmbean.xml" /> + </metainf> <fileset dir="${build.classes}"> <include name="org/jboss/test/jmx/interceptors/*.class"/> + </fileset> + <fileset dir="${build.resources}"> + <include name="jmx/interceptors/*.properties"/> + <include name="jmx/interceptors/security-config.xml"/> + <include name="jmx/interceptors/scripts/*"/> </fileset> </jar> |
From: Chris K. <ki...@us...> - 2003-04-09 11:04:43
|
User: kimptoc Date: 03/04/09 04:04:40 Modified: . build.xml Log: make the test summary report params more amenable to being overridden Revision Changes Path 1.234 +11 -12 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.233 retrieving revision 1.234 diff -u -r1.233 -r1.234 --- build.xml 2 Apr 2003 03:29:12 -0000 1.233 +++ build.xml 9 Apr 2003 11:04:39 -0000 1.234 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.233 2003/04/02 03:29:12 patriot1burke Exp $ --> +<!-- $Id: build.xml,v 1.234 2003/04/09 11:04:39 kimptoc Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -50,9 +50,6 @@ <target name="init" depends="_default:init"> <!-- Add module specific elements here. --> - <tstamp> - <format property="TIMENOW" pattern="yyyy-MM-dd.HH-mm" timezone="GMT"/> - </tstamp> <echo message="${TIMENOW}" file="run.tstamp" /> <echo message="Set timestamp to: ${TIMENOW}" /> </target> @@ -67,6 +64,10 @@ <target name="configure" unless="configure.disable"> + <tstamp> + <format property="TIMENOW" pattern="yyyy-MM-dd.HH-mm" timezone="GMT"/> + </tstamp> + <!--+================================+--> <!--| Library & Module Dependencies. |--> <!--+================================+--> @@ -165,6 +166,10 @@ <property name="default.test.create-table" value="true"/> <property name="default.test.remove-table" value="true"/> + <!-- test report defaults --> + <property name="builduid" value="${TIMENOW}"/> + <property name="results_web" value="http://users.jboss.org/~starksm/HEAD"/> + <!-- Classpath to build and run the tests --> <path id="tests.classpath"> @@ -4657,12 +4662,6 @@ </junitreport> </target> - <!-- - | this currently spews logs of VariableReference crap, so it is turned - | off by default. Once this is fixed, it should be built after - | tests-report-html - --> - <target name="tests-report-text" depends="tests-report-html"> <property name="summary.stylesheet" value="summary1b.xsl"/> @@ -4690,8 +4689,8 @@ <param name="os_name" expression="${os.name}"/> <param name="os_arch" expression="${os.arch}"/> <param name="os_version" expression="${os.version}"/> - <param name="builduid" expression="${TIMENOW}"/> - <param name="results_web" expression="http://users.jboss.org/~starksm/HEAD"/> + <param name="builduid" expression="${builduid}"/> + <param name="results_web" expression="${results_web}"/> </style> </target> |
From: David J. <d_j...@us...> - 2003-04-09 19:18:57
|
User: d_jencks Date: 03/04/09 12:18:56 Modified: . Tag: Branch_3_2 build.xml Log: Fixed problem with ejb jars deploying sub packages Revision Changes Path No revision No revision 1.165.2.56 +2 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.55 retrieving revision 1.165.2.56 diff -u -r1.165.2.55 -r1.165.2.56 --- build.xml 7 Apr 2003 08:06:53 -0000 1.165.2.55 +++ build.xml 9 Apr 2003 19:18:53 -0000 1.165.2.56 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.55 2003/04/07 08:06:53 starksm Exp $ --> +<!-- $Id: build.xml,v 1.165.2.56 2003/04/09 19:18:53 d_jencks Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -1779,7 +1779,7 @@ <include name="org/jboss/test/jca/ejb/**"/> </fileset> <fileset dir="${build.resources}/jca"> - <include name="**/*.xml"/> + <include name="META-INF/*.xml"/> </fileset> </jar> |
From: Scott M S. <st...@us...> - 2003-04-10 09:05:55
|
User: starksm Date: 03/04/10 02:05:54 Modified: . Tag: Branch_3_2 build.xml Log: - Further cleanup the jmxtest.jar content - Drop the reliance on the custom junit report formatter as the ant 1.5.2 version does detect testcase timeouts Revision Changes Path No revision No revision 1.165.2.57 +27 -47 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.56 retrieving revision 1.165.2.57 diff -u -r1.165.2.56 -r1.165.2.57 --- build.xml 9 Apr 2003 19:18:53 -0000 1.165.2.56 +++ build.xml 10 Apr 2003 09:05:49 -0000 1.165.2.57 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.56 2003/04/09 19:18:53 d_jencks Exp $ --> +<!-- $Id: build.xml,v 1.165.2.57 2003/04/10 09:05:49 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -1815,8 +1815,9 @@ <exclude name="org/jboss/test/jmx/mbean*/**"/> </fileset> <fileset dir="${build.resources}/jmx"> - <include name="*.*"/> - <include name="META-INF/*.*"/> + <include name="test-service.xml"/> + <include name="META-INF/ejb-jar.xml"/> + <include name="META-INF/jboss.xml"/> </fileset> </jar> @@ -2397,10 +2398,6 @@ <include name="org/jboss/test/jrmp/test/DynLoading*.class"/> <include name="org/jboss/test/JBossTestCase.class"/> <include name="org/jboss/test/JBossTestServices.class"/> - <!-- This test cannot run with ${build.classes} in the classpath --> - <!-- so include the custom ant task in jar --> - <!-- A better fix might be to build the ant stuff in a different subfolder --> - <include name="org/jboss/ant/taskdefs/XMLJUnitResultFormatter.class"/> </fileset> </jar> @@ -3042,7 +3039,6 @@ <fileset dir="${build.classes}"> <include name="org/jboss/test/*.class"/> <include name="org/jboss/test/securitymgr/test/**"/> - <include name="org/jboss/ant/taskdefs/XMLJUnitResultFormatter.class"/> </fileset> </jar> </target> @@ -3840,8 +3836,11 @@ <path refid="tests.classpath"/> </classpath> +<!-- <formatter classname="org.jboss.ant.taskdefs.XMLJUnitResultFormatter" - extension=".xml" usefile="${junit.formatter.usefile}"/> + usefile="${junit.formatter.usefile}"/> +--> + <formatter type="xml" usefile="${junit.formatter.usefile}"/> <batchtest todir="${build.reports}" haltonerror="${junit.batchtest.haltonerror}" @@ -3900,8 +3899,7 @@ <path refid="tests.classpath"/> </classpath> - <formatter classname="org.jboss.ant.taskdefs.XMLJUnitResultFormatter" - extension=".xml" usefile="${junit.formatter.usefile}"/> + <formatter type="xml" usefile="${junit.formatter.usefile}"/> <batchtest todir="${build.reports}" haltonerror="${junit.batchtest.haltonerror}" @@ -3951,8 +3949,7 @@ <path refid="tests.classpath"/> </classpath> - <formatter classname="org.jboss.ant.taskdefs.XMLJUnitResultFormatter" - extension=".xml" usefile="${junit.formatter.usefile}"/> + <formatter type="xml" usefile="${junit.formatter.usefile}"/> <batchtest todir="${build.reports}" haltonerror="${junit.batchtest.haltonerror}" @@ -4002,8 +3999,7 @@ <path refid="tests.classpath"/> </classpath> - <formatter classname="org.jboss.ant.taskdefs.XMLJUnitResultFormatter" - extension=".xml" usefile="${junit.formatter.usefile}"/> + <formatter type="xml" usefile="${junit.formatter.usefile}"/> <batchtest todir="${build.reports}" haltonerror="${junit.batchtest.haltonerror}" @@ -4049,8 +4045,7 @@ <path refid="tests.classpath"/> </classpath> - <formatter classname="org.jboss.ant.taskdefs.XMLJUnitResultFormatter" - extension=".xml" usefile="${junit.formatter.usefile}"/> + <formatter type="xml" usefile="${junit.formatter.usefile}"/> <batchtest todir="${build.reports}" haltonerror="${junit.batchtest.haltonerror}" @@ -4100,8 +4095,7 @@ <path refid="tests.classpath"/> </classpath> - <formatter classname="org.jboss.ant.taskdefs.XMLJUnitResultFormatter" - extension=".xml" usefile="${junit.formatter.usefile}"/> + <formatter type="xml" usefile="${junit.formatter.usefile}"/> <batchtest todir="${build.reports}" haltonerror="${junit.batchtest.haltonerror}" @@ -4150,8 +4144,7 @@ <path refid="tests.classpath"/> </classpath> - <formatter classname="org.jboss.ant.taskdefs.XMLJUnitResultFormatter" - extension=".xml" usefile="${junit.formatter.usefile}"/> + <formatter type="xml" usefile="${junit.formatter.usefile}"/> <batchtest todir="${build.reports}" haltonerror="${junit.batchtest.haltonerror}" @@ -4295,8 +4288,7 @@ <path refid="tests.classpath"/> </classpath> - <formatter classname="org.jboss.ant.taskdefs.XMLJUnitResultFormatter" - extension=".xml" usefile="${junit.formatter.usefile}"/> + <formatter type="xml" usefile="${junit.formatter.usefile}"/> <batchtest todir="${build.reports}" haltonerror="${junit.batchtest.haltonerror}" @@ -4349,8 +4341,7 @@ <path refid="tests.classpath"/> </classpath> - <formatter classname="org.jboss.ant.taskdefs.XMLJUnitResultFormatter" - extension=".xml" usefile="${junit.formatter.usefile}"/> + <formatter type="xml" usefile="${junit.formatter.usefile}"/> <batchtest todir="${build.reports}" haltonerror="${junit.batchtest.haltonerror}" @@ -4399,8 +4390,7 @@ <path refid="tests.classpath"/> </classpath> - <formatter classname="org.jboss.ant.taskdefs.XMLJUnitResultFormatter" - extension=".xml" usefile="${junit.formatter.usefile}"/> + <formatter type="xml" usefile="${junit.formatter.usefile}"/> <batchtest todir="${build.reports}" haltonerror="${junit.batchtest.haltonerror}" @@ -4449,8 +4439,7 @@ <path refid="tests.classpath"/> </classpath> - <formatter classname="org.jboss.ant.taskdefs.XMLJUnitResultFormatter" - extension=".xml" usefile="${junit.formatter.usefile}"/> + <formatter type="xml" usefile="${junit.formatter.usefile}"/> <batchtest todir="${build.reports}" haltonerror="${junit.batchtest.haltonerror}" @@ -4489,8 +4478,7 @@ <path refid="tests.classpath"/> </classpath> - <formatter classname="org.jboss.ant.taskdefs.XMLJUnitResultFormatter" - extension=".xml" usefile="${junit.formatter.usefile}"/> + <formatter type="xml" usefile="${junit.formatter.usefile}"/> <batchtest todir="${build.reports}" haltonerror="${junit.batchtest.haltonerror}" @@ -4531,8 +4519,7 @@ <path refid="tests.classpath"/> </classpath> - <formatter classname="org.jboss.ant.taskdefs.XMLJUnitResultFormatter" - extension=".xml" usefile="${junit.formatter.usefile}"/> + <formatter type="xml" usefile="${junit.formatter.usefile}"/> <batchtest todir="${build.reports}" haltonerror="${junit.batchtest.haltonerror}" @@ -4573,8 +4560,7 @@ <path refid="tests.classpath"/> </classpath> - <formatter classname="org.jboss.ant.taskdefs.XMLJUnitResultFormatter" - extension=".xml" usefile="${junit.formatter.usefile}"/> + <formatter type="xml" usefile="${junit.formatter.usefile}"/> <batchtest todir="${build.reports}" haltonerror="${junit.batchtest.haltonerror}" @@ -4629,8 +4615,7 @@ <path refid="jboss.iiop.classpath"/> </classpath> - <formatter classname="org.jboss.ant.taskdefs.XMLJUnitResultFormatter" - extension=".xml" usefile="${junit.formatter.usefile}"/> + <formatter type="xml" usefile="${junit.formatter.usefile}"/> <batchtest todir="${build.reports}" haltonerror="${junit.batchtest.haltonerror}" @@ -4673,8 +4658,7 @@ <path refid="tests.classpath"/> </classpath> - <formatter classname="org.jboss.ant.taskdefs.XMLJUnitResultFormatter" - extension=".xml" usefile="${junit.formatter.usefile}"/> + <formatter type="xml" usefile="${junit.formatter.usefile}"/> <batchtest todir="${build.reports}" haltonerror="${junit.batchtest.haltonerror}" @@ -4735,8 +4719,7 @@ <path refid="tests.classpath"/> </classpath> - <formatter classname="org.jboss.ant.taskdefs.XMLJUnitResultFormatter" - extension=".xml" usefile="${junit.formatter.usefile}"/> + <formatter type="xml" usefile="${junit.formatter.usefile}"/> <batchtest todir="${build.reports}" haltonerror="${junit.batchtest.haltonerror}" @@ -4795,8 +4778,7 @@ <path refid="jboss.iiop.classpath"/> </classpath> - <formatter classname="org.jboss.ant.taskdefs.XMLJUnitResultFormatter" - extension=".xml" usefile="${junit.formatter.usefile}"/> + <formatter type="xml" usefile="${junit.formatter.usefile}"/> <batchtest todir="${build.reports}" haltonerror="${junit.batchtest.haltonerror}" @@ -4838,8 +4820,7 @@ <path refid="tests.classpath"/> </classpath> - <formatter classname="org.jboss.ant.taskdefs.XMLJUnitResultFormatter" - extension=".xml" usefile="${junit.formatter.usefile}"/> + <formatter type="xml" usefile="${junit.formatter.usefile}"/> <batchtest todir="${build.reports}" haltonerror="${junit.batchtest.haltonerror}" @@ -4892,8 +4873,7 @@ <path refid="tests.classpath"/> </classpath> - <formatter classname="org.jboss.ant.taskdefs.XMLJUnitResultFormatter" - extension=".xml" usefile="${junit.formatter.usefile}"/> + <formatter type="xml" usefile="${junit.formatter.usefile}"/> <test todir="${build.reports}" name="${test}" haltonerror="${junit.batchtest.haltonerror}" |
From: Bela B. <be...@us...> - 2003-04-12 01:18:31
|
User: belaban Date: 03/04/11 18:18:30 Modified: . build.xml Log: added entry for cache Revision Changes Path 1.235 +14 -13 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.234 retrieving revision 1.235 diff -u -r1.234 -r1.235 --- build.xml 9 Apr 2003 11:04:39 -0000 1.234 +++ build.xml 12 Apr 2003 01:18:29 -0000 1.235 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.234 2003/04/09 11:04:39 kimptoc Exp $ --> +<!-- $Id: build.xml,v 1.235 2003/04/12 01:18:29 belaban Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -101,6 +101,7 @@ <path refid="jboss.remoting.classpath"/> <path refid="jboss.cluster.classpath"/> <pathelement path="${jboss.aop.lib}/jboss-aop.jar"/> + <pathelement path="${jboss.cache.lib}/jboss-cache.jar"/> <pathelement path="${jboss.system.lib}/testsuite-support.jar"/> <pathelement path="${jboss.naming.lib}/jnpserver.jar"/> <pathelement path="${jboss.server.lib}/jboss-client.jar"/> @@ -125,10 +126,10 @@ <pathelement path="${jboss.varia.lib}/aop-plugin.jar"/> <!-- - | This could be a mistake. Perhaps, though, it would be a good - | idea to separate tests that need internal jboss classes from - | those that don't. When I put it in, only the jca - | XATxConnectionManagerUnitTestCase needed an internal class + | This could be a mistake. Perhaps, though, it would be a good + | idea to separate tests that need internal jboss classes from + | those that don't. When I put it in, only the jca + | XATxConnectionManagerUnitTestCase needed an internal class | (the tx manager) --> <pathelement path="${jboss.server.lib}/jboss.jar"/> @@ -143,7 +144,7 @@ <property name="junit.timeout" value="180000"/> <!-- 3 minutes --> <property name="junit.batchtest.todir" value="${build.reports}"/> - <!-- Configure defaults & build tools --> + <!-- Configure defaults & build tools --> <call target="configure-defaults"/> <call target="configure-tools"/> @@ -1470,7 +1471,7 @@ <fileset dir="${build.classes}"> <include name="org/jboss/test/jca/adapter/**"/> </fileset> - </jar> + </jar> <jar jarfile="${build.lib}/jbosstestadapter.rar"> <fileset dir="${build.lib}"> @@ -1479,7 +1480,7 @@ <fileset dir="${build.resources}/jca/adapter"> <include name="META-INF/ra.xml"/> </fileset> - </jar> + </jar> <!-- test adapter config --> <copy todir="${build.lib}" filtering="no"> @@ -1500,7 +1501,7 @@ <fileset dir="${build.resources}/jmx/xmbean"> <include name="org/jboss/test/jca/adapter15/**.xml"/> </fileset> - </jar> + </jar> <jar jarfile="${build.lib}/jbosstestadapter15.rar"> <fileset dir="${build.lib}"> @@ -1509,7 +1510,7 @@ <fileset dir="${build.resources}/jca/adapter15"> <include name="META-INF/ra.xml"/> </fileset> - </jar> + </jar> <copy todir="${build.lib}" filtering="no"> <fileset dir="${build.resources}/jmx/xmbean"> @@ -4321,7 +4322,7 @@ --> <target name="tests-db" depends="init, run-db-tests, tests-report-html"/> - + <target name="run-db-tests" depends="maybejars"> <mkdir dir="${build.reports}"/> <mkdir dir="${build.log}"/> @@ -4414,7 +4415,7 @@ </batchtest> </junit> </target> - + <!-- | Run testcases in a single directory by specifing the test directory @@ -4694,7 +4695,7 @@ </style> </target> - <!-- + <!-- | Include the mqstress test - remember that these tests need to be | manually updated when the version info of the server changes --> |
From: Bela B. <be...@us...> - 2003-04-15 13:59:58
|
User: belaban Date: 03/04/15 06:59:56 Modified: . build.xml Log: added javagroups lib to classpath Revision Changes Path 1.236 +2 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.235 retrieving revision 1.236 diff -u -r1.235 -r1.236 --- build.xml 12 Apr 2003 01:18:29 -0000 1.235 +++ build.xml 15 Apr 2003 13:59:54 -0000 1.236 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.235 2003/04/12 01:18:29 belaban Exp $ --> +<!-- $Id: build.xml,v 1.236 2003/04/15 13:59:54 belaban Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -90,6 +90,7 @@ <path refid="apache.bcel.classpath"/> <path refid="hsqldb.hsqldb.classpath"/> <path refid="apache.ant.classpath"/> + <path refid="javagroups.javagroups.classpath"/> </path> <!-- Configure modules --> |
From: Adrian B. <ej...@us...> - 2003-04-17 10:30:31
|
User: ejort Date: 03/04/17 03:30:25 Modified: . Tag: Branch_3_0 build.xml Log: Don't include everything in jcatest.jar Revision Changes Path No revision No revision 1.106.2.69 +5 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.106.2.68 retrieving revision 1.106.2.69 diff -u -r1.106.2.68 -r1.106.2.69 --- build.xml 4 Apr 2003 04:30:38 -0000 1.106.2.68 +++ build.xml 17 Apr 2003 10:30:16 -0000 1.106.2.69 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.106.2.68 2003/04/04 04:30:38 starksm Exp $ --> +<!-- $Id: build.xml,v 1.106.2.69 2003/04/17 10:30:16 ejort Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -1468,6 +1468,10 @@ </fileset> <fileset dir="${build.resources}/jca"> <include name="**/*.xml"/> + <exclude name="adapter/**"/> + <exclude name="autocommit/**"/> + <exclude name="bank/**"/> + <exclude name="jdbc/**"/> </fileset> </jar> |
From: Adrian B. <ej...@us...> - 2003-04-17 11:10:45
|
User: ejort Date: 03/04/17 04:10:43 Modified: . Tag: Branch_3_0 build.xml Log: Don't include everything in jmxtest.jar Revision Changes Path No revision No revision 1.106.2.70 +1 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.106.2.69 retrieving revision 1.106.2.70 diff -u -r1.106.2.69 -r1.106.2.70 --- build.xml 17 Apr 2003 10:30:16 -0000 1.106.2.69 +++ build.xml 17 Apr 2003 11:10:39 -0000 1.106.2.70 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.106.2.69 2003/04/17 10:30:16 ejort Exp $ --> +<!-- $Id: build.xml,v 1.106.2.70 2003/04/17 11:10:39 ejort Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -1507,7 +1507,6 @@ <exclude name="org/jboss/test/jmx/mbean*/**"/> </fileset> <fileset dir="${build.resources}/jmx"> - <include name="*.*"/> <include name="META-INF/*.*"/> </fileset> </jar> |
From: Bill B. <pat...@us...> - 2003-04-18 04:30:15
|
User: patriot1burke Date: 03/04/17 21:30:14 Modified: . build.xml Log: testing transactional object 2nd iteration Revision Changes Path 1.237 +3 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.236 retrieving revision 1.237 diff -u -r1.236 -r1.237 --- build.xml 15 Apr 2003 13:59:54 -0000 1.236 +++ build.xml 18 Apr 2003 04:30:13 -0000 1.237 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.236 2003/04/15 13:59:54 belaban Exp $ --> +<!-- $Id: build.xml,v 1.237 2003/04/18 04:30:13 patriot1burke Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -2284,6 +2284,8 @@ <jar jarfile="${build.lib}/aoptest.aop" manifest="${build.etc}/manifest.mf"> <fileset dir="${build.classes}"> + <include name="org/jboss/test/aop/bean/Person.class"/> + <include name="org/jboss/test/aop/bean/Address.class"/> <include name="org/jboss/test/aop/bean/NoInterceptorsPOJO*.class"/> <include name="org/jboss/test/aop/bean/NonadvisedPOJO.class"/> <include name="org/jboss/test/aop/bean/SecuredPOJO.class"/> |
From: Bill B. <pat...@us...> - 2003-04-21 07:46:01
|
User: patriot1burke Date: 03/04/21 00:46:00 Modified: . build.xml Log: aop mixin testing Revision Changes Path 1.238 +3 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.237 retrieving revision 1.238 diff -u -r1.237 -r1.238 --- build.xml 18 Apr 2003 04:30:13 -0000 1.237 +++ build.xml 21 Apr 2003 07:45:59 -0000 1.238 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.237 2003/04/18 04:30:13 patriot1burke Exp $ --> +<!-- $Id: build.xml,v 1.238 2003/04/21 07:45:59 patriot1burke Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -2291,6 +2291,8 @@ <include name="org/jboss/test/aop/bean/SecuredPOJO.class"/> <include name="org/jboss/test/aop/bean/SomeException.class"/> <include name="org/jboss/test/aop/bean/POJO*.class"/> + <include name="org/jboss/test/aop/bean/SomeIntroduction.class"/> + <include name="org/jboss/test/aop/bean/Introduction.class"/> <include name="org/jboss/test/aop/bean/TxPOJO.class"/> <include name="org/jboss/test/aop/bean/TxLockedPOJO.class"/> <include name="org/jboss/test/aop/bean/VersionedPOJO.class"/> |
From: Bill B. <pat...@us...> - 2003-04-21 21:28:51
|
User: patriot1burke Date: 03/04/21 14:28:49 Modified: . build.xml Log: further testing of mixins Revision Changes Path 1.239 +4 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.238 retrieving revision 1.239 diff -u -r1.238 -r1.239 --- build.xml 21 Apr 2003 07:45:59 -0000 1.238 +++ build.xml 21 Apr 2003 21:28:47 -0000 1.239 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.238 2003/04/21 07:45:59 patriot1burke Exp $ --> +<!-- $Id: build.xml,v 1.239 2003/04/21 21:28:47 patriot1burke Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -2292,7 +2292,10 @@ <include name="org/jboss/test/aop/bean/SomeException.class"/> <include name="org/jboss/test/aop/bean/POJO*.class"/> <include name="org/jboss/test/aop/bean/SomeIntroduction.class"/> + <include name="org/jboss/test/aop/bean/AnotherIntroduction.class"/> <include name="org/jboss/test/aop/bean/Introduction.class"/> + <include name="org/jboss/test/aop/bean/Introduction2.class"/> + <include name="org/jboss/test/aop/bean/InterfaceMixin.class"/> <include name="org/jboss/test/aop/bean/TxPOJO.class"/> <include name="org/jboss/test/aop/bean/TxLockedPOJO.class"/> <include name="org/jboss/test/aop/bean/VersionedPOJO.class"/> |
From: Bill B. <pat...@us...> - 2003-04-21 22:02:56
|
User: patriot1burke Date: 03/04/21 15:02:55 Modified: . build.xml Log: added construction config for mixins. testing this Revision Changes Path 1.240 +2 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.239 retrieving revision 1.240 diff -u -r1.239 -r1.240 --- build.xml 21 Apr 2003 21:28:47 -0000 1.239 +++ build.xml 21 Apr 2003 22:02:45 -0000 1.240 @@ -10,7 +10,7 @@ <!ENTITY mqstress SYSTEM "./mqstress.xml"> ]> -<!-- $Id: build.xml,v 1.239 2003/04/21 21:28:47 patriot1burke Exp $ --> +<!-- $Id: build.xml,v 1.240 2003/04/21 22:02:45 patriot1burke Exp $ --> <!--+======================================================================+--> <!--| JBoss (The OpenSource J2EE WebOS) Build File |--> @@ -2292,6 +2292,7 @@ <include name="org/jboss/test/aop/bean/SomeException.class"/> <include name="org/jboss/test/aop/bean/POJO*.class"/> <include name="org/jboss/test/aop/bean/SomeIntroduction.class"/> + <include name="org/jboss/test/aop/bean/SubclassIntroduction.class"/> <include name="org/jboss/test/aop/bean/AnotherIntroduction.class"/> <include name="org/jboss/test/aop/bean/Introduction.class"/> <include name="org/jboss/test/aop/bean/Introduction2.class"/> |
From: Adrian B. <ej...@us...> - 2003-04-22 00:38:30
|
User: ejort Date: 03/04/21 17:38:26 Modified: . Tag: Branch_3_0 build.xml Log: Add tests for ejbload outside a tx under commit option B and C Revision Changes Path No revision No revision 1.106.2.71 +15 -3 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.106.2.70 retrieving revision 1.106.2.71 diff -u -r1.106.2.70 -r1.106.2.71 --- build.xml 17 Apr 2003 11:10:39 -0000 1.106.2.70 +++ build.xml 22 Apr 2003 00:38:24 -0000 1.106.2.71 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.106.2.70 2003/04/17 11:10:39 ejort Exp $ --> +<!-- $Id: build.xml,v 1.106.2.71 2003/04/22 00:38:24 ejort Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -2958,8 +2958,7 @@ </jar> <!-- build jboss-test-pathological-entity.jar --> - <jar jarfile="${build.lib}/jboss-test-pathological-entity.jar" - manifest="${build.etc}/manifest.mf"> + <jar jarfile="${build.lib}/jboss-test-pathological-entity.jar"> <fileset dir="${build.classes}"> <patternset refid="common.test.client.classes"/> <include name="org/jboss/test/entity/interfaces/**"/> @@ -2967,6 +2966,19 @@ <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: Adrian B. <ej...@us...> - 2003-04-22 00:39:41
|
User: ejort Date: 03/04/21 17:39:38 Modified: . Tag: Branch_3_2 build.xml Log: Add tests for ejbload outside a tx under commit option B and C Revision Changes Path No revision No revision 1.165.2.58 +14 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.57 retrieving revision 1.165.2.58 diff -u -r1.165.2.57 -r1.165.2.58 --- build.xml 10 Apr 2003 09:05:49 -0000 1.165.2.57 +++ build.xml 22 Apr 2003 00:39:37 -0000 1.165.2.58 @@ -13,7 +13,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.57 2003/04/10 09:05:49 starksm Exp $ --> +<!-- $Id: build.xml,v 1.165.2.58 2003/04/22 00:39:37 ejort Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -3606,6 +3606,19 @@ <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> |