From: Bill B. <pat...@us...> - 2004-02-28 00:15:48
|
User: patriot1burke Date: 04/02/27 15:58:57 Modified: . build.xml Log: cflow support testing Revision Changes Path 1.340 +7 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.339 retrieving revision 1.340 diff -u -r1.339 -r1.340 --- build.xml 25 Feb 2004 00:47:52 -0000 1.339 +++ build.xml 27 Feb 2004 23:58:57 -0000 1.340 @@ -15,7 +15,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.339 2004/02/25 00:47:52 patriot1burke Exp $ --> +<!-- $Id: build.xml,v 1.340 2004/02/27 23:58:57 patriot1burke Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -4832,6 +4832,12 @@ <jar jarfile="${build.lib}/aoptest.aop" manifest="${build.etc}/manifest.mf"> <fileset dir="${build.classes}"> + <include name="org/jboss/test/aop/bean/Implements*.class"/> + <include name="org/jboss/test/aop/bean/CFlowedPOJO.class"/> + <include name="org/jboss/test/aop/bean/InstanceOfInterceptor.class"/> + <include name="org/jboss/test/aop/bean/InterceptorCounter.class"/> + <include name="org/jboss/test/aop/bean/SomeInterface.class"/> + <include name="org/jboss/test/aop/bean/EmptyInterface.class"/> <include name="org/jboss/test/aop/bean/Aspect.class"/> <include name="org/jboss/test/aop/bean/Person.class"/> <include name="org/jboss/test/aop/bean/Address.class"/> |
From: Scott M S. <st...@us...> - 2004-03-02 06:37:51
|
User: starksm Date: 04/03/01 22:18:28 Modified: . Tag: Branch_3_2 build.xml Log: Add security-jaas.sar/security-jaas.jar targets Revision Changes Path No revision No revision 1.165.2.138 +49 -16 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.137 retrieving revision 1.165.2.138 diff -u -r1.165.2.137 -r1.165.2.138 --- build.xml 27 Feb 2004 03:42:42 -0000 1.165.2.137 +++ build.xml 2 Mar 2004 06:18:27 -0000 1.165.2.138 @@ -15,7 +15,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.137 2004/02/27 03:42:42 reverbel Exp $ --> +<!-- $Id: build.xml,v 1.165.2.138 2004/03/02 06:18:27 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -3262,6 +3262,33 @@ </fileset> </war> --> + <!-- war to test FORM auth --> + <war warfile="${build.lib}/form-auth.war" + webxml="${build.resources}/web/WEB-INF/form-auth-web.xml"> + <webinf dir="${build.resources}/web/html/other/WEB-INF"> + <include name="jboss-web.xml"/> + </webinf> + <classes dir="${build.classes}"> + <include name="org/jboss/test/web/servlets/SecureServlet.class" /> + </classes> + <fileset dir="${build.resources}/web/html/root"> + <include name="**/*.html"/> + </fileset> + </war> + + <!-- war to test CLIENT-CERT auth --> + <war warfile="${build.lib}/clientcert-auth.war" + webxml="${build.resources}/web/WEB-INF/clientcert-auth-web.xml"> + <webinf dir="${build.resources}/web/html/other/WEB-INF"> + <include name="jboss-web.xml"/> + </webinf> + <classes dir="${build.classes}"> + <include name="org/jboss/test/web/servlets/SecureServlet.class" /> + </classes> + <fileset dir="${build.resources}/web/html/root"> + <include name="**/*.html"/> + </fileset> + </war> <!-- build jbosstest-web.ear --> <ear earfile="${build.lib}/jbosstest-web.ear" @@ -3397,21 +3424,6 @@ </fileset> </jar> - <!-- build security.jar --> - <jar jarfile="${build.lib}/security.jar"> - <fileset dir="${build.classes}"> - <include name="org/jboss/test/security/interfaces/**"/> - <include name="org/jboss/test/security/ejb/**"/> - <include name="org/jboss/test/security/proxy/**"/> - <include name="org/jboss/test/security/test/Namespace*"/> - <include name="org/jboss/test/security/test/PermissionName*"/> - </fileset> - <fileset dir="${build.resources}/security"> - <include name="**/ejb-jar.xml" /> - <include name="**/jboss.xml" /> - </fileset> - </jar> - <!-- build security-spec.jar --> <jar jarfile="${build.lib}/security-spec.sar"> <metainf dir="${build.resources}/security-spec/service-inf" /> @@ -3512,6 +3524,27 @@ <include name="org/jboss/test/securitymgr/test/**"/> </fileset> </jar> + + <!-- build security-jaas.jar --> + <jar jarfile="${build.lib}/security-jaas.sar"> + <metainf dir="${build.resources}/security/service-inf" /> + </jar> + <jar jarfile="${build.lib}/security-jaas.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/security/interfaces/CustomPrincipal*"/> + <include name="org/jboss/test/security/ejb/CustomPrincipal*" /> + </fileset> + <fileset dir="${build.resources}/security"> + <include name="META-INF/ejb-jar.xml" /> + <include name="META-INF/jboss.xml" /> + </fileset> + <fileset dir="${build.resources}/security"> + <include name="*.properties" /> + </fileset> + <fileset dir="${build.lib}"> + <include name="security-jaas.sar"/> + </fileset> + </jar> </target> <!-- jsr77 test --> |
From: Scott M S. <st...@us...> - 2004-03-04 06:26:16
|
User: starksm Date: 04/03/03 22:05:17 Modified: . Tag: Branch_3_2 build.xml Log: Add a security-jaas.ear target Revision Changes Path No revision No revision 1.165.2.139 +25 -7 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.138 retrieving revision 1.165.2.139 diff -u -r1.165.2.138 -r1.165.2.139 --- build.xml 2 Mar 2004 06:18:27 -0000 1.165.2.138 +++ build.xml 4 Mar 2004 06:05:10 -0000 1.165.2.139 @@ -15,7 +15,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.138 2004/03/02 06:18:27 starksm Exp $ --> +<!-- $Id: build.xml,v 1.165.2.139 2004/03/04 06:05:10 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -3529,6 +3529,15 @@ <jar jarfile="${build.lib}/security-jaas.sar"> <metainf dir="${build.resources}/security/service-inf" /> </jar> + <war warfile="${build.lib}/security-jaas.war" + webxml="${build.resources}/security/WEB-INF/jaas-web.xml" > + <webinf dir="${build.resources}/security/WEB-INF"> + <include name="jboss-web.xml" /> + </webinf> + <classes dir="${build.classes}"> + <include name="org/jboss/test/security/servlets/**"/> + </classes> + </war> <jar jarfile="${build.lib}/security-jaas.jar"> <fileset dir="${build.classes}"> <include name="org/jboss/test/security/interfaces/CustomPrincipal*"/> @@ -3538,13 +3547,22 @@ <include name="META-INF/ejb-jar.xml" /> <include name="META-INF/jboss.xml" /> </fileset> - <fileset dir="${build.resources}/security"> - <include name="*.properties" /> - </fileset> - <fileset dir="${build.lib}"> - <include name="security-jaas.sar"/> - </fileset> </jar> + <ear earfile="${build.lib}/security-jaas.ear" + appxml="${build.resources}/security/META-INF/application-jaas.xml"> + <metainf dir="${build.resources}/security/META-INF"> + <include name="jboss-app.xml" /> + </metainf> + <fileset dir="${build.lib}"> + <include name="security-jaas.jar" /> + <include name="security-jaas.sar" /> + <include name="security-jaas.war" /> + </fileset> + <zipfileset dir="${build.resources}/security" prefix="security"> + <include name="roles.properties" /> + <include name="users.properties" /> + </zipfileset> + </ear> </target> <!-- jsr77 test --> |
From: Alexey L. <lou...@us...> - 2004-03-05 17:56:41
|
User: loubyansky Date: 04/03/05 09:34:34 Modified: . Tag: Branch_3_2 build.xml Log: do not require jboss.net to be built to, say, clean the testsuite. Revision Changes Path No revision No revision 1.165.2.140 +3 -3 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.139 retrieving revision 1.165.2.140 diff -u -r1.165.2.139 -r1.165.2.140 --- build.xml 4 Mar 2004 06:05:10 -0000 1.165.2.139 +++ build.xml 5 Mar 2004 17:34:32 -0000 1.165.2.140 @@ -15,7 +15,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.139 2004/03/04 06:05:10 starksm Exp $ --> +<!-- $Id: build.xml,v 1.165.2.140 2004/03/05 17:34:32 loubyansky Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -240,8 +240,8 @@ <fileset dir="${project.thirdparty}/xdoclet/xdoclet/lib"> <include name="**/*.jar"/> </fileset> - <fileset dir="${project.root}/jboss.net/output/lib"> - <include name="xdoclet-*.jar" /> + <fileset dir="${project.root}/jboss.net"> + <include name="output/lib/xdoclet-*.jar" /> </fileset> </path> <property name="xdoclet.task.classpath" refid="xdoclet.task.classpath" /> |
From: Ben W. <bw...@us...> - 2004-03-06 08:21:29
|
User: bwang00 Date: 04/03/05 23:58:45 Modified: . build.xml Log: Fixed typo in tests-baseaop-unit for Bill's aop Revision Changes Path 1.341 +2 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.340 retrieving revision 1.341 diff -u -r1.340 -r1.341 --- build.xml 27 Feb 2004 23:58:57 -0000 1.340 +++ build.xml 6 Mar 2004 07:58:43 -0000 1.341 @@ -15,7 +15,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.340 2004/02/27 23:58:57 patriot1burke Exp $ --> +<!-- $Id: build.xml,v 1.341 2004/03/06 07:58:43 bwang00 Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -5435,7 +5435,7 @@ </junit> </target> - <target name="test-baseaop-unit" depends="init"> + <target name="tests-baseaop-unit" depends="init"> <mkdir dir="${build.reports}"/> <mkdir dir="${build.testlog}"/> <junit dir="${module.output}" |
From: Scott M S. <st...@us...> - 2004-03-07 00:45:04
|
User: starksm Date: 04/03/06 16:21:59 Modified: . Tag: Branch_3_2 build.xml Log: Change the crimson classpath element to xalan Revision Changes Path No revision No revision 1.165.2.141 +2 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.140 retrieving revision 1.165.2.141 diff -u -r1.165.2.140 -r1.165.2.141 --- build.xml 5 Mar 2004 17:34:32 -0000 1.165.2.140 +++ build.xml 7 Mar 2004 00:21:58 -0000 1.165.2.141 @@ -15,7 +15,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.140 2004/03/05 17:34:32 loubyansky Exp $ --> +<!-- $Id: build.xml,v 1.165.2.141 2004/03/07 00:21:58 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -89,7 +89,7 @@ <path refid="sun.javamail.classpath"/> <path refid="sun.servlet.classpath"/> <path refid="apache.avalon.classpath"/> - <path refid="apache.crimson.classpath"/> + <path refid="apache.xalan.classpath"/> <path refid="apache.commons.classpath"/> <path refid="apache.log4j.classpath"/> <path refid="apache.axis.classpath"/> |
From: Thomas D. <tdi...@us...> - 2004-03-08 09:59:18
|
User: tdiesler Date: 04/03/08 01:35:08 Modified: . build.xml Log: + add target for timer tests Revision Changes Path 1.342 +49 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.341 retrieving revision 1.342 diff -u -r1.341 -r1.342 --- build.xml 6 Mar 2004 07:58:43 -0000 1.341 +++ build.xml 8 Mar 2004 09:35:00 -0000 1.342 @@ -15,7 +15,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.341 2004/03/06 07:58:43 bwang00 Exp $ --> +<!-- $Id: build.xml,v 1.342 2004/03/08 09:35:00 tdiesler Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -5966,6 +5966,54 @@ </target> <!-- + | Standard Foe-Deployer tests that should run successfully against a default + | JBoss server distribution build. + --> + + <target name="tests-timer-unit" depends="maybejars"> + <mkdir dir="${build.reports}"/> + <mkdir dir="${build.testlog}"/> + <junit dir="${module.output}" + printsummary="${junit.printsummary}" + haltonerror="${junit.haltonerror}" + haltonfailure="${junit.haltonfailure}" + fork="${junit.fork}" + timeout="${junit.timeout}" + jvm="${junit.jvm}"> + + <jvmarg value="${junit.jvm.options}"/> + <sysproperty key="jbosstest.deploy.dir" file="${build.lib}"/> + + <jvmarg value="-Djava.security.manager"/> + <sysproperty key="java.security.policy" + value="${build.resources}/security/tst.policy"/> + <sysproperty key="java.security.auth.login.config" + value="${build.resources}/security/auth.conf"/> + <sysproperty key="build.testlog" value="${build.testlog}"/> + <sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/> + + <classpath> + <pathelement location="${build.classes}"/> + <pathelement location="${build.resources}/security"/> + <pathelement location="${build.resources}"/> + <path refid="tests.classpath"/> + </classpath> + + <formatter type="xml" usefile="${junit.formatter.usefile}"/> + + <batchtest todir="${build.reports}" + haltonerror="${junit.batchtest.haltonerror}" + haltonfailure="${junit.batchtest.haltonfailure}" + fork="${junit.batchtest.fork}"> + + <fileset dir="${build.classes}"> + <include name="**/test/timer/test/**TestCase.class"/> + </fileset> + </batchtest> + </junit> + </target> + + <!-- | Standard JBoss Util tests that should run successfully against a default | JBoss server distribution build. --> |
From: Thomas D. <tdi...@us...> - 2004-03-08 12:16:32
|
User: tdiesler Date: 04/03/08 03:52:18 Modified: . build.xml Log: + add test for timer on entity bean Revision Changes Path 1.343 +2 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.342 retrieving revision 1.343 diff -u -r1.342 -r1.343 --- build.xml 8 Mar 2004 09:35:00 -0000 1.342 +++ build.xml 8 Mar 2004 11:52:17 -0000 1.343 @@ -15,7 +15,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.342 2004/03/08 09:35:00 tdiesler Exp $ --> +<!-- $Id: build.xml,v 1.343 2004/03/08 11:52:17 tdiesler Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -4967,7 +4967,7 @@ <!-- EJB Timer Service test --> <target name="_jars-timer"> <!-- build session-bean-timer.jar --> - <jar jarfile="${build.lib}/session-bean-timer.jar"> + <jar jarfile="${build.lib}/ejb-timer.jar"> <fileset dir="${build.classes}"> <include name="org/jboss/test/timer/ejb/**"/> <include name="org/jboss/test/timer/interfaces/**"/> |
From: Ben W. <bw...@us...> - 2004-03-10 00:29:12
|
User: bwang00 Date: 04/03/09 16:03:47 Modified: . build.xml Log: Added treecacheaop with aopc tests Revision Changes Path 1.344 +57 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.343 retrieving revision 1.344 diff -u -r1.343 -r1.344 --- build.xml 8 Mar 2004 11:52:17 -0000 1.343 +++ build.xml 10 Mar 2004 00:03:47 -0000 1.344 @@ -15,7 +15,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.343 2004/03/08 11:52:17 tdiesler Exp $ --> +<!-- $Id: build.xml,v 1.344 2004/03/10 00:03:47 bwang00 Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -5396,6 +5396,9 @@ <target name="tests-standalone-aop-unit" depends="compile"> <antcall target="tests-treecacheaop-unit" inheritRefs="true"/> +<!-- + <antcall target="tests-treecacheaopc-unit" inheritRefs="true"/> +--> <antcall target="tests-baseaop-unit" inheritRefs="true"/> </target> @@ -5435,6 +5438,59 @@ </junit> </target> + <target name="tests-treecacheaopc-unit" depends="init"> + <!-- pre-compile the aop classes --> + <taskdef name="aopc" classname="org.jboss.aop.ant.AopC" classpathref="jboss.aop.classpath"/> + <path id="aop.task.classpath"> + <path refid="javassist.classpath"/> + <path refid="trove.classpath"/> + <path refid="jboss.aop.classpath"/> + <path refid="jboss.common.classpath"/> + </path> + + <aopc compilerclasspathref="aop.task.classpath"> + <classpath refid="thirdparty.classpath"/> + <classpath path="${build.classes}"/> + <src path="${build.classes}"/> + <include name="org/jboss/test/cache/test/standAloneAop/*AopTest*"/> + <aoppath path="${source.resources}/cache/standalone/META-INF/jboss-aop.xml"/> + </aopc> + + <mkdir dir="${build.reports}"/> + <mkdir dir="${build.testlog}"/> + <junit dir="${module.output}" + printsummary="${junit.printsummary}" + haltonerror="${junit.haltonerror}" + haltonfailure="${junit.haltonfailure}" + fork="${junit.fork}" + timeout="${junit.timeout}" + jvm="${junit.jvm}"> + + <sysproperty key="jbosstest.deploy.dir" file="${build.lib}"/> + <sysproperty key="build.testlog" value="${build.testlog}"/> + <sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/> + + <classpath> + <pathelement location="${build.classes}"/> + <pathelement location="${build.resources}/cache/standalone"/> + <path refid="tests.classpath"/> + </classpath> + + <formatter type="xml" usefile="${junit.formatter.usefile}"/> + + <batchtest todir="${build.reports}" + haltonerror="${junit.batchtest.haltonerror}" + haltonfailure="${junit.batchtest.haltonfailure}" + fork="${junit.batchtest.fork}"> + + <fileset dir="${build.classes}"> + <include name="org/jboss/test/cache/test/standAloneAop/*AopTest.class"/> + </fileset> + </batchtest> + </junit> + </target> + + <target name="tests-baseaop-unit" depends="init"> <mkdir dir="${build.reports}"/> <mkdir dir="${build.testlog}"/> |
From: Ben W. <bw...@us...> - 2004-03-10 01:11:05
|
User: bwang00 Date: 04/03/09 16:45:33 Modified: . build.xml Log: Updated with treecache aopc Revision Changes Path 1.345 +6 -4 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.344 retrieving revision 1.345 diff -u -r1.344 -r1.345 --- build.xml 10 Mar 2004 00:03:47 -0000 1.344 +++ build.xml 10 Mar 2004 00:45:32 -0000 1.345 @@ -15,7 +15,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.344 2004/03/10 00:03:47 bwang00 Exp $ --> +<!-- $Id: build.xml,v 1.345 2004/03/10 00:45:32 bwang00 Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -5395,10 +5395,10 @@ </target> <target name="tests-standalone-aop-unit" depends="compile"> - <antcall target="tests-treecacheaop-unit" inheritRefs="true"/> <!-- - <antcall target="tests-treecacheaopc-unit" inheritRefs="true"/> + <antcall target="tests-treecacheaop-unit" inheritRefs="true"/> --> + <antcall target="tests-treecacheaopc-unit" inheritRefs="true"/> <antcall target="tests-baseaop-unit" inheritRefs="true"/> </target> @@ -5417,6 +5417,7 @@ <sysproperty key="jbosstest.deploy.dir" file="${build.lib}"/> <sysproperty key="build.testlog" value="${build.testlog}"/> <sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/> + <sysproperty key="jboss.aop.path" file="${source.resources}/cache/standalone/META-INF/jboss-aop.xml"/> <classpath> <pathelement location="${build.classes}"/> @@ -5452,7 +5453,7 @@ <classpath refid="thirdparty.classpath"/> <classpath path="${build.classes}"/> <src path="${build.classes}"/> - <include name="org/jboss/test/cache/test/standAloneAop/*AopTest*"/> + <include name="org/jboss/test/cache/test/standAloneAop/**"/> <aoppath path="${source.resources}/cache/standalone/META-INF/jboss-aop.xml"/> </aopc> @@ -5469,6 +5470,7 @@ <sysproperty key="jbosstest.deploy.dir" file="${build.lib}"/> <sysproperty key="build.testlog" value="${build.testlog}"/> <sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/> + <sysproperty key="jboss.aop.path" file="${source.resources}/cache/standalone/META-INF/jboss-aop.xml"/> <classpath> <pathelement location="${build.classes}"/> |
From: Adrian B. <ej...@us...> - 2004-03-10 10:01:19
|
User: ejort Date: 04/03/10 01:35:36 Modified: . build.xml Log: Avoid the recompile before the aop standalone tests Revision Changes Path 1.346 +2 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.345 retrieving revision 1.346 diff -u -r1.345 -r1.346 --- build.xml 10 Mar 2004 00:45:32 -0000 1.345 +++ build.xml 10 Mar 2004 09:35:35 -0000 1.346 @@ -15,7 +15,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.345 2004/03/10 00:45:32 bwang00 Exp $ --> +<!-- $Id: build.xml,v 1.346 2004/03/10 09:35:35 ejort Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -5394,7 +5394,7 @@ </junit> </target> - <target name="tests-standalone-aop-unit" depends="compile"> + <target name="tests-standalone-aop-unit" depends="maybejars"> <!-- <antcall target="tests-treecacheaop-unit" inheritRefs="true"/> --> |
From: Ben W. <bw...@us...> - 2004-03-12 04:32:41
|
User: bwang00 Date: 04/03/11 20:05:35 Modified: . Tag: Branch_3_2 build.xml Log: updated for cache tests Revision Changes Path No revision No revision 1.165.2.142 +27 -5 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.141 retrieving revision 1.165.2.142 diff -u -r1.165.2.141 -r1.165.2.142 --- build.xml 7 Mar 2004 00:21:58 -0000 1.165.2.141 +++ build.xml 12 Mar 2004 04:05:33 -0000 1.165.2.142 @@ -15,7 +15,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.165.2.141 2004/03/07 00:21:58 starksm Exp $ --> +<!-- $Id: build.xml,v 1.165.2.142 2004/03/12 04:05:33 bwang00 Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -1047,6 +1047,24 @@ mergedir="${source.resources}/proxycompiler"/> </ejbdoclet> + + <!-- cache test --> + <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"/> + </fileset> + <remoteinterface/> + <homeinterface/> + <deploymentdescriptor xmlencoding="UTF-8" + destdir="${build.resources}/cache/META-INF"/> + <jboss xmlencoding="UTF-8" + version="3.0" + destdir="${build.resources}/cache/META-INF"/> + </ejbdoclet> + </target> <!-- Compile all class files --> @@ -2006,8 +2024,15 @@ <target name="_jars-cache"> + <!-- Not much to do with jar, but ... --> + <mkdir dir="${build.resources}/META-INF"/> + <copy todir="${build.resources}/META-INF" filtering="no"> + <fileset dir="${source.resources}/cache/META-INF"> + <include name="*-service*.xml"/> + </fileset> + </copy> + <!-- build cachetest.jar --> -<!-- <jar jarfile="${build.lib}/cachetest.jar" manifest="${build.resources}/cache/manifest.mf"> <fileset dir="${build.classes}"> @@ -2018,12 +2043,10 @@ <include name="ejb-jar.xml"/> </metainf> </jar> ---> <!-- build cachetest.sar --> <!-- --> -<!-- <copy file="${build.resources}/cache/META-INF/tree-service.xml" tofile="${build.resources}/cache/META-INF/jboss-service.xml"/> @@ -2035,7 +2058,6 @@ <include name="**/jboss-service.xml"/> </fileset> </jar> ---> </target> |
From: Scott M S. <st...@us...> - 2004-03-12 05:52:28
|
User: starksm Date: 04/03/11 21:25:17 Modified: . Tag: Branch_3_2 build.xml Log: Update the https-service.sar build Revision Changes Path No revision No revision 1.165.2.143 +19 -19 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.142 retrieving revision 1.165.2.143 diff -u -r1.165.2.142 -r1.165.2.143 --- build.xml 12 Mar 2004 04:05:33 -0000 1.165.2.142 +++ build.xml 12 Mar 2004 05:25:14 -0000 1.165.2.143 @@ -6,22 +6,22 @@ <!ENTITY mqstress SYSTEM "mqstress.xml"> ]> -<!-- ====================================================================== --> -<!-- --> -<!-- JBoss, the OpenSource J2EE webOS --> -<!-- --> -<!-- Distributable under LGPL license. --> -<!-- See terms of license at http://www.gnu.org. --> -<!-- --> -<!-- ====================================================================== --> +<!-- ============================================================ --> +<!-- --> +<!-- JBoss, the OpenSource J2EE webOS --> +<!-- --> +<!-- Distributable under LGPL license. --> +<!-- See terms of license at http://www.gnu.org. --> +<!-- --> +<!-- ============================================================ --> -<!-- $Id: build.xml,v 1.165.2.142 2004/03/12 04:05:33 bwang00 Exp $ --> +<!-- $Id: build.xml,v 1.165.2.143 2004/03/12 05:25:14 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> - <!-- ================================================================== --> - <!-- Setup --> - <!-- ================================================================== --> + <!-- ======================================================== --> + <!-- Setup --> + <!-- ======================================================== --> <!-- | Include the common Buildmagic elements. @@ -33,9 +33,9 @@ &buildmagic; - <!-- ================================================================== --> - <!-- Initialization --> - <!-- ================================================================== --> + <!-- ======================================================== --> + <!-- Initialization --> + <!-- ======================================================== --> <!-- | Initialize the build system. Must depend on '_buildmagic:init'. @@ -53,9 +53,9 @@ <property name="results_web" value="http://jboss.sourceforge.net//junit-results/32"/> - <!-- ================================================================== --> - <!-- Configuration --> - <!-- ================================================================== --> + <!-- ======================================================== --> + <!-- Configuration --> + <!-- ======================================================== --> <!-- | Configure the build system. @@ -3505,7 +3505,7 @@ <!-- build https-service.sar --> <jar jarfile="${build.lib}/https-service.sar"> - <metainf dir="${build.resources}/security/META-INF"/> + <metainf dir="${build.resources}/security/https-service"/> <metainf dir="${build.resources}/security"> <include name="tst.keystore"/> </metainf> |
From: Scott M S. <st...@us...> - 2004-03-12 06:01:13
|
User: starksm Date: 04/03/11 21:34:04 Modified: . Tag: Branch_3_2 build.xml Log: Exclude the cache tests from compilation until the missing classes are added Revision Changes Path No revision No revision 1.165.2.144 +3 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.143 retrieving revision 1.165.2.144 diff -u -r1.165.2.143 -r1.165.2.144 --- build.xml 12 Mar 2004 05:25:14 -0000 1.165.2.143 +++ build.xml 12 Mar 2004 05:34:03 -0000 1.165.2.144 @@ -15,7 +15,7 @@ <!-- --> <!-- ============================================================ --> -<!-- $Id: build.xml,v 1.165.2.143 2004/03/12 05:25:14 starksm Exp $ --> +<!-- $Id: build.xml,v 1.165.2.144 2004/03/12 05:34:03 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -1087,7 +1087,7 @@ <src path="${build.gen-src}"/> <classpath refid="tests.classpath"/> <include name="${javac.includes}"/> - <exclude name="${javac.excludes}"/> + <exclude name="org/jboss/test/cache/**"/> </javac> </target> @@ -4818,6 +4818,7 @@ <exclude name="**/test/naming/test/Security*"/> <exclude name="**/test/security/test/*"/> <exclude name="**/test/securitymgr/test/*"/> + <exclude name="**/test/jmx/test/Secure* <!-- Takes way too long, needs to be fixed to handle timeouts --> <!-- |
From: Scott M S. <st...@us...> - 2004-03-12 06:05:12
|
User: starksm Date: 04/03/11 21:38:03 Modified: . Tag: Branch_3_2 build.xml Log: Fix the truncated xml element Revision Changes Path No revision No revision 1.165.2.145 +2 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.144 retrieving revision 1.165.2.145 diff -u -r1.165.2.144 -r1.165.2.145 --- build.xml 12 Mar 2004 05:34:03 -0000 1.165.2.144 +++ build.xml 12 Mar 2004 05:38:02 -0000 1.165.2.145 @@ -15,7 +15,7 @@ <!-- --> <!-- ============================================================ --> -<!-- $Id: build.xml,v 1.165.2.144 2004/03/12 05:34:03 starksm Exp $ --> +<!-- $Id: build.xml,v 1.165.2.145 2004/03/12 05:38:02 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -4818,7 +4818,7 @@ <exclude name="**/test/naming/test/Security*"/> <exclude name="**/test/security/test/*"/> <exclude name="**/test/securitymgr/test/*"/> - <exclude name="**/test/jmx/test/Secure* + <exclude name="**/test/jmx/test/Secure*" /> <!-- Takes way too long, needs to be fixed to handle timeouts --> <!-- |
From: Ben W. <bw...@us...> - 2004-03-12 08:26:36
|
User: bwang00 Date: 04/03/11 23:59:20 Modified: . Tag: Branch_3_2 build.xml Log: Updated for cache test Revision Changes Path No revision No revision 1.165.2.146 +25 -18 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.145 retrieving revision 1.165.2.146 diff -u -r1.165.2.145 -r1.165.2.146 --- build.xml 12 Mar 2004 05:38:02 -0000 1.165.2.145 +++ build.xml 12 Mar 2004 07:59:18 -0000 1.165.2.146 @@ -15,7 +15,7 @@ <!-- --> <!-- ============================================================ --> -<!-- $Id: build.xml,v 1.165.2.145 2004/03/12 05:38:02 starksm Exp $ --> +<!-- $Id: build.xml,v 1.165.2.146 2004/03/12 07:59:18 bwang00 Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -282,6 +282,25 @@ <mkdir dir="${build.gen-src}"/> + <!-- cache test --> + <mkdir dir="${build.resources}/cache/META-INF"/> + <delete file="${build.ources}/cacje/META-INF/ejb-jar.xml"/> + <delete file="${build.ources}/cacje/META-INF/jboss.xml"/> + <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/META-INF"/> + <jboss xmlencoding="UTF-8" + version="3.0" + destdir="${build.resources}/cache/META-INF"/> + </ejbdoclet> + <!--ejbconf--> <mkdir dir="${build.resources}/ejb-conf/readonly/META-INF"/> <ejbdoclet destdir="${build.gen-src}" @@ -1048,23 +1067,6 @@ </ejbdoclet> - <!-- cache test --> - <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"/> - </fileset> - <remoteinterface/> - <homeinterface/> - <deploymentdescriptor xmlencoding="UTF-8" - destdir="${build.resources}/cache/META-INF"/> - <jboss xmlencoding="UTF-8" - version="3.0" - destdir="${build.resources}/cache/META-INF"/> - </ejbdoclet> - </target> <!-- Compile all class files --> @@ -2051,6 +2053,11 @@ tofile="${build.resources}/cache/META-INF/jboss-service.xml"/> <jar jarfile="${build.lib}/cachetest.sar"> +<!-- + <fileset dir="${build.lib}"> + <include name="cachetest.jar"/> + </fileset> +--> <fileset dir="${jboss.cache.lib}"> <include name="jboss-cache.jar"/> </fileset> |
From: Ben W. <bw...@us...> - 2004-03-12 08:55:16
|
User: bwang00 Date: 04/03/12 00:28:02 Modified: . Tag: Branch_3_2 build.xml Log: Reactivate cache test cases Revision Changes Path No revision No revision 1.165.2.147 +1 -2 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.146 retrieving revision 1.165.2.147 diff -u -r1.165.2.146 -r1.165.2.147 --- build.xml 12 Mar 2004 07:59:18 -0000 1.165.2.146 +++ build.xml 12 Mar 2004 08:28:01 -0000 1.165.2.147 @@ -15,7 +15,7 @@ <!-- --> <!-- ============================================================ --> -<!-- $Id: build.xml,v 1.165.2.146 2004/03/12 07:59:18 bwang00 Exp $ --> +<!-- $Id: build.xml,v 1.165.2.147 2004/03/12 08:28:01 bwang00 Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -1089,7 +1089,6 @@ <src path="${build.gen-src}"/> <classpath refid="tests.classpath"/> <include name="${javac.includes}"/> - <exclude name="org/jboss/test/cache/**"/> </javac> </target> |
From: Thomas D. <tdi...@us...> - 2004-03-13 20:06:01
|
User: tdiesler Date: 04/03/13 11:57:10 Modified: . build.xml Log: + make 'one-test' dependent on init, just like 'test' Revision Changes Path 1.347 +4 -3 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.346 retrieving revision 1.347 diff -u -r1.346 -r1.347 --- build.xml 10 Mar 2004 09:35:35 -0000 1.346 +++ build.xml 13 Mar 2004 19:57:06 -0000 1.347 @@ -15,7 +15,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.346 2004/03/10 09:35:35 ejort Exp $ --> +<!-- $Id: build.xml,v 1.347 2004/03/13 19:57:06 tdiesler Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -6360,7 +6360,7 @@ --> <target name="test" depends="init" if="test" - description="Execute a single test."> + description="Execute all tests in the given test directory."> <mkdir dir="${build.reports}"/> <mkdir dir="${build.testlog}"/> <!-- Remove the test.log so each run has a fresh log --> @@ -6517,7 +6517,7 @@ | Here you specify the testcase class, not the directory --> - <target name="one-test" depends="maybejars" if="test" + <target name="one-test" depends="init" if="test" description="Execute a single test."> <mkdir dir="${build.reports}"/> <mkdir dir="${build.testlog}"/> @@ -6532,6 +6532,7 @@ jvm="${junit.jvm}"> <jvmarg value="${junit.jvm.options}"/> + <!--jvmarg line="-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=n,address=5005,suspend=y"/--> <sysproperty key="jbosstest.deploy.dir" file="${build.lib}"/> <sysproperty key="build.testlog" value="${build.testlog}"/> <sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/> |
From: Adrian B. <ej...@us...> - 2004-03-14 16:27:56
|
User: ejort Date: 04/03/14 08:19:00 Modified: . build.xml Log: Add a simple test of XADataSource deployment Revision Changes Path 1.348 +10 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.347 retrieving revision 1.348 diff -u -r1.347 -r1.348 --- build.xml 13 Mar 2004 19:57:06 -0000 1.347 +++ build.xml 14 Mar 2004 16:19:00 -0000 1.348 @@ -15,7 +15,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.347 2004/03/13 19:57:06 tdiesler Exp $ --> +<!-- $Id: build.xml,v 1.348 2004/03/14 16:19:00 ejort Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -2207,6 +2207,15 @@ </fileset> </jar> + <jar jarfile="${build.lib}/jcaxadstest.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/jca/xads/**"/> + </fileset> + <fileset dir="${build.resources}/jca/xads"> + <include name="*.xml"/> + </fileset> + </jar> + <!--copy the plain *-service.xml files too --> <copy todir="${build.lib}" filtering="no"> <fileset dir="${build.resources}/jca/autocommit"> |
From: Adrian B. <ej...@us...> - 2004-03-14 18:46:57
|
User: ejort Date: 04/03/14 10:37:59 Modified: . build.xml Log: Perform a login before accessing the secure jmx mbean Revision Changes Path 1.349 +5 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.348 retrieving revision 1.349 diff -u -r1.348 -r1.349 --- build.xml 14 Mar 2004 16:19:00 -0000 1.348 +++ build.xml 14 Mar 2004 18:37:59 -0000 1.349 @@ -15,7 +15,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.348 2004/03/14 16:19:00 ejort Exp $ --> +<!-- $Id: build.xml,v 1.349 2004/03/14 18:37:59 ejort Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -5264,6 +5264,8 @@ <sysproperty key="jbosstest.deploy.dir" file="${build.lib}"/> <sysproperty key="build.testlog" value="${build.testlog}"/> <sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/> + <sysproperty key="java.security.auth.login.config" + value="${build.resources}/security/auth.conf"/> <classpath> <pathelement location="${build.classes}"/> @@ -6391,6 +6393,8 @@ <sysproperty key="jbosstest.threadcount" value="${jbosstest.threadcount}"/> <sysproperty key="jbosstest.iterationcount" value="${jbosstest.iterationcount}"/> <sysproperty key="jbosstest.beancount" value="${jbosstest.beancount}"/> + <sysproperty key="java.security.auth.login.config" + value="${build.resources}/security/auth.conf"/> <classpath> |
From: Scott M S. <st...@us...> - 2004-03-16 05:44:01
|
User: starksm Date: 04/03/15 21:34:49 Modified: . build.xml Log: Update the _jars-security section Revision Changes Path 1.350 +41 -25 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.349 retrieving revision 1.350 diff -u -r1.349 -r1.350 --- build.xml 14 Mar 2004 18:37:59 -0000 1.349 +++ build.xml 16 Mar 2004 05:34:48 -0000 1.350 @@ -15,7 +15,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.349 2004/03/14 18:37:59 ejort Exp $ --> +<!-- $Id: build.xml,v 1.350 2004/03/16 05:34:48 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -3530,29 +3530,6 @@ <target name="_jars-security"> <mkdir dir="${build.lib}"/> - <!-- build security-client.jar --> - <jar jarfile="${build.lib}/security-client.jar" - manifest="${build.etc}/manifest.mf"> - <fileset dir="${build.classes}"> - <include name="org/jboss/test/security/interfaces/**"/> - </fileset> - </jar> - - <!-- build security.jar --> - <jar jarfile="${build.lib}/security.jar"> - <fileset dir="${build.classes}"> - <include name="org/jboss/test/security/interfaces/**"/> - <include name="org/jboss/test/security/ejb/**"/> - <include name="org/jboss/test/security/proxy/**"/> - <include name="org/jboss/test/security/test/Namespace*"/> - <include name="org/jboss/test/security/test/PermissionName*"/> - </fileset> - <fileset dir="${build.resources}/security"> - <include name="**/ejb-jar.xml" /> - <include name="**/jboss.xml" /> - </fileset> - </jar> - <!-- build security-spec.jar --> <jar jarfile="${build.lib}/security-spec.sar"> <metainf dir="${build.resources}/security-spec/service-inf" /> @@ -3612,7 +3589,7 @@ <!-- build https-service.sar --> <jar jarfile="${build.lib}/https-service.sar"> - <metainf dir="${build.resources}/security/META-INF"/> + <metainf dir="${build.resources}/security/https-service"/> <metainf dir="${build.resources}/security"> <include name="tst.keystore"/> </metainf> @@ -3653,6 +3630,45 @@ <include name="org/jboss/test/securitymgr/test/**"/> </fileset> </jar> + + <!-- build security-jaas.jar --> + <jar jarfile="${build.lib}/security-jaas.sar"> + <metainf dir="${build.resources}/security/service-inf" /> + </jar> + <war warfile="${build.lib}/security-jaas.war" + webxml="${build.resources}/security/WEB-INF/jaas-web.xml" > + <webinf dir="${build.resources}/security/WEB-INF"> + <include name="jboss-web.xml" /> + </webinf> + <classes dir="${build.classes}"> + <include name="org/jboss/test/security/servlets/**"/> + </classes> + </war> + <jar jarfile="${build.lib}/security-jaas.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/security/interfaces/CustomPrincipal*"/> + <include name="org/jboss/test/security/ejb/CustomPrincipal*" /> + </fileset> + <fileset dir="${build.resources}/security"> + <include name="META-INF/ejb-jar.xml" /> + <include name="META-INF/jboss.xml" /> + </fileset> + </jar> + <ear earfile="${build.lib}/security-jaas.ear" + appxml="${build.resources}/security/META-INF/application-jaas.xml"> + <metainf dir="${build.resources}/security/META-INF"> + <include name="jboss-app.xml" /> + </metainf> + <fileset dir="${build.lib}"> + <include name="security-jaas.jar" /> + <include name="security-jaas.sar" /> + <include name="security-jaas.war" /> + </fileset> + <zipfileset dir="${build.resources}/security" prefix="security"> + <include name="roles.properties" /> + <include name="users.properties" /> + </zipfileset> + </ear> </target> <!-- jsr77 test --> |
From: Scott M S. <st...@us...> - 2004-03-20 02:28:59
|
User: starksm Date: 04/03/19 18:19:08 Modified: . build.xml Log: Change the WSDL2Java classpath from library.classpath to thirdparty.classpath since the jaxrpc and saaj classes come from the j2ee module Revision Changes Path 1.351 +4 -4 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.350 retrieving revision 1.351 diff -u -r1.350 -r1.351 --- build.xml 16 Mar 2004 05:34:48 -0000 1.350 +++ build.xml 20 Mar 2004 02:19:07 -0000 1.351 @@ -15,7 +15,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.350 2004/03/16 05:34:48 starksm Exp $ --> +<!-- $Id: build.xml,v 1.351 2004/03/20 02:19:07 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -908,7 +908,7 @@ <arg value="-d" /> <arg value="Session" /> <arg value="-Nhttp://test.jboss.org/samples/AddressBook=org.jboss.test.webservice.wsr" /> <arg value="${source.resources}/webservice/wsr/wsr/META-INF/AddressBook.wsdl" /> - <classpath refid="library.classpath"/> + <classpath refid="thirdparty.classpath"/> </java> <!-- Delete the service impl skeleton as we have an impl already --> @@ -919,7 +919,7 @@ <arg value="-d" /> <arg value="Session" /> <arg value="-Nhttp://www.xmethods.net/sd/BabelFishService.wsdl=org.jboss.test.webservice.external.babelfish" /> <arg value="${source.resources}/webservice/external/wsr/META-INF/babelfish.wsdl" /> - <classpath refid="library.classpath"/> + <classpath refid="thirdparty.classpath"/> </java> <!-- call wsdl4j emitter for Google stubs --> @@ -927,7 +927,7 @@ <arg value="-d" /> <arg value="Session" /> <arg value="-Nurn:GoogleSearch=org.jboss.test.webservice.external.google" /> <arg value="${source.resources}/webservice/external/wsr/META-INF/google.wsdl" /> - <classpath refid="library.classpath"/> + <classpath refid="thirdparty.classpath"/> </java> <!-- these taskdefs allow to call jboss.net specific xdoclet functionality --> |
From: Adrian B. <ej...@us...> - 2004-03-29 13:23:56
|
User: ejort Date: 04/03/29 05:12:30 Modified: . build.xml Log: Observable tests Revision Changes Path 1.352 +8 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.351 retrieving revision 1.352 diff -u -r1.351 -r1.352 --- build.xml 20 Mar 2004 02:19:07 -0000 1.351 +++ build.xml 29 Mar 2004 13:12:30 -0000 1.352 @@ -15,7 +15,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.351 2004/03/20 02:19:07 starksm Exp $ --> +<!-- $Id: build.xml,v 1.352 2004/03/29 13:12:30 ejort Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -4885,6 +4885,9 @@ <include name="org/jboss/test/aop/bean/SimpleInterceptorFactory.class"/> <include name="org/jboss/test/aop/bean/SimpleBeanInterceptor.class"/> <include name="org/jboss/test/aop/bean/SimpleBeanInterceptorFactory.class"/> + <include name="org/jboss/test/aop/bean/Temperature*.class"/> + <include name="org/jboss/test/aop/bean/Observable*.class"/> + <include name="org/jboss/test/aop/bean/LogUtil*.class"/> </fileset> <fileset dir="${build.resources}/aop"> <include name="META-INF/jboss-aop.xml"/> @@ -4913,6 +4916,10 @@ <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"/> + <include name="org/jboss/test/aop/bean/LogUtil.class"/> + <include name="org/jboss/test/aop/bean/Temperature.class"/> + <include name="org/jboss/test/aop/bean/ObservableTester.class"/> + <include name="org/jboss/test/aop/bean/ObservableTesterMBean.class"/> </fileset> <fileset dir="${build.resources}/aop"> <include name="users.properties"/> |
From: Scott M S. <st...@us...> - 2004-03-29 19:35:07
|
User: starksm Date: 04/03/29 11:23:34 Modified: . Tag: Branch_3_2 build.xml Log: Build used by the Deadlock32 tests Revision Changes Path No revision No revision 1.165.2.148 +13 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.165.2.147 retrieving revision 1.165.2.148 diff -u -r1.165.2.147 -r1.165.2.148 --- build.xml 12 Mar 2004 08:28:01 -0000 1.165.2.147 +++ build.xml 29 Mar 2004 19:23:33 -0000 1.165.2.148 @@ -15,7 +15,7 @@ <!-- --> <!-- ============================================================ --> -<!-- $Id: build.xml,v 1.165.2.147 2004/03/12 08:28:01 bwang00 Exp $ --> +<!-- $Id: build.xml,v 1.165.2.148 2004/03/29 19:23:33 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -4116,6 +4116,18 @@ </fileset> </jar> + <!-- Jars used by the Deadlock32 tests --> + <jar jarfile="${build.lib}/dl-a.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/classloader/test/abc/TestA*"/> + </fileset> + </jar> + <jar jarfile="${build.lib}/dl-b.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/classloader/test/abc/TestB*"/> + </fileset> + </jar> + <!-- A jar that appears to contain java.sql classes for ScopingUnitTestCase.testSystemClasses2 --> |
From: Scott M S. <st...@us...> - 2004-03-30 17:45:15
|
User: starksm Date: 04/03/30 09:33:38 Modified: . build.xml Log: Build jars used by the Deadlock32 tests Revision Changes Path 1.353 +13 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.352 retrieving revision 1.353 diff -u -r1.352 -r1.353 --- build.xml 29 Mar 2004 13:12:30 -0000 1.352 +++ build.xml 30 Mar 2004 17:33:24 -0000 1.353 @@ -15,7 +15,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.352 2004/03/29 13:12:30 ejort Exp $ --> +<!-- $Id: build.xml,v 1.353 2004/03/30 17:33:24 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -4557,6 +4557,18 @@ </fileset> </jar> + <!-- Jars used by the Deadlock32 tests --> + <jar jarfile="${build.lib}/dl-a.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/classloader/test/abc/TestA*"/> + </fileset> + </jar> + <jar jarfile="${build.lib}/dl-b.jar"> + <fileset dir="${build.classes}"> + <include name="org/jboss/test/classloader/test/abc/TestB*"/> + </fileset> + </jar> + <!-- A jar that appears to contain java.sql classes for ScopingUnitTestCase.testSystemClasses2 --> |