|
From: Alexey L. <lou...@us...> - 2003-06-03 12:34:16
|
User: loubyansky
Date: 03/06/03 05:34:15
Modified: . build.xml
Log:
removed stale cmpaop tests.
Revision Changes Path
1.268 +1 -57 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.267
retrieving revision 1.268
diff -u -r1.267 -r1.268
--- build.xml 3 Jun 2003 12:31:40 -0000 1.267
+++ build.xml 3 Jun 2003 12:34:14 -0000 1.268
@@ -10,7 +10,7 @@
<!ENTITY mqstress SYSTEM "./mqstress.xml">
]>
-<!-- $Id: build.xml,v 1.267 2003/06/03 12:31:40 loubyansky Exp $ -->
+<!-- $Id: build.xml,v 1.268 2003/06/03 12:34:14 loubyansky Exp $ -->
<!--+======================================================================+-->
<!--| JBoss (The OpenSource J2EE WebOS) Build File |-->
@@ -864,7 +864,6 @@
<call target="_output:classloader"/>
<call target="_output:timer"/>
<call target="_output:entity"/>
- <call target="_output:cmpaop"/>
<call target="_output:serverside"/>
<call target="_output:ws4ee"/>
</parallel>
@@ -3470,17 +3469,6 @@
</jar>
</target>
- <!-- cmp aop test -->
- <target name="_output:cmpaop" depends="_output:support">
- <!-- build jboss-cmp-aop.jar -->
- <jar jarfile="${build.lib}/jboss-cmp-aop.jar"
- manifest="${build.etc}/manifest.mf">
- <fileset dir="${build.classes}">
- <include name="org/jboss/test/cmp/aop/**"/>
- </fileset>
- </jar>
- </target>
-
<!-- serverside support -->
<target name="_output:serverside" depends="_output:support">
<!-- build server side service -->
@@ -4683,50 +4671,6 @@
</junit>
</target>
-
- <!--
- | Run all cmp aop related tests
- -->
-
- <target name="tests-cmpaop" depends="init, run-cmp-aop-tests, tests-report-html"/>
- <target name="run-cmp-aop-tests" depends="maybejars">
- <mkdir dir="${build.reports}"/>
- <mkdir dir="${build.log}"/>
- <junit dir="${module.output}"
- printsummary="${junit.printsummary}"
- haltonerror="${junit.haltonerror}"
- haltonfailure="${junit.haltonfailure}"
- fork="${junit.fork}"
- timeout="${junit.timeout}"
- jvm="${junit.jvm}">
-
- <jvmarg value="${junit.jvm.options}"/>
- <sysproperty key="jbosstest.deploy.dir" file="${build.lib}"/>
- <sysproperty key="build.log" value="${build.log}"/>
- <sysproperty key="log4j.configuration" value="file:${build.resources}/log4j.xml"/>
- <sysproperty key="jbosstest.data.dir" value="${jbosstest.data.dir}"/>
- <sysproperty key="jbosstest.iterationcount" value="2"/>
-
- <classpath>
- <pathelement location="${build.classes}"/>
- <pathelement location="${build.resources}"/>
- <path refid="tests.classpath"/>
- </classpath>
-
- <formatter classname="org.jboss.ant.taskdefs.XMLJUnitResultFormatter"
- extension=".xml" usefile="${junit.formatter.usefile}"/>
-
- <batchtest todir="${build.reports}"
- haltonerror="${junit.batchtest.haltonerror}"
- haltonfailure="${junit.batchtest.haltonfailure}"
- fork="${junit.batchtest.fork}">
-
- <fileset dir="${build.classes}">
- <include name="**/cmp/aop/**/*TestCase.class"/>
- </fileset>
- </batchtest>
- </junit>
- </target>
<!--
| Run all jbossdo related tests
|