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 --> |