|
From: Bill B. <pat...@us...> - 2002-12-13 04:30:13
|
User: patriot1burke
Date: 02/12/12 20:30:12
Modified: . build.xml
Log:
aop stuff
Revision Changes Path
1.202 +50 -2 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.201
retrieving revision 1.202
diff -u -r1.201 -r1.202
--- build.xml 9 Dec 2002 17:59:43 -0000 1.201
+++ build.xml 13 Dec 2002 04:30:12 -0000 1.202
@@ -10,7 +10,7 @@
<!ENTITY mqstress SYSTEM "./mqstress.xml">
]>
-<!-- $Id: build.xml,v 1.201 2002/12/09 17:59:43 lqd Exp $ -->
+<!-- $Id: build.xml,v 1.202 2002/12/13 04:30:12 patriot1burke Exp $ -->
<!--+======================================================================+-->
<!--| JBoss (The OpenSource J2EE WebOS) Build File |-->
@@ -96,6 +96,7 @@
<path refid="jboss.j2ee.classpath"/>
<path refid="jboss.common.classpath"/>
<path refid="jboss.blocks.classpath"/>
+ <pathelement path="${jboss.aop.lib}/jboss-aop.jar"/>
<pathelement path="${jboss.system.lib}/testsuite-support.jar"/>
<pathelement path="${jboss.naming.lib}/jnpserver.jar"/>
<pathelement path="${jboss.server.lib}/jboss-client.jar"/>
@@ -662,6 +663,7 @@
<call target="_output:invokers"/>
<call target="_output:threading"/>
<call target="_output:deadlock"/>
+ <call target="_output:aop"/>
<call target="_output:pooled"/>
<call target="_output:testbean"/>
<call target="_output:testbeancluster"/>
@@ -2053,7 +2055,52 @@
</target>
- <!-- deadlock test -->
+ <!-- aop test -->
+ <target name="_output:aop" depends="_output:support">
+ <!-- <mkdir dir="${build.lib}"/> -->
+
+ <!-- build aopest.jar -->
+ <jar jarfile="${build.lib}/aoptest.jar"
+ manifest="${build.etc}/manifest.mf">
+ <fileset dir="${build.classes}">
+ <patternset refid="common.test.client.classes"/>
+ <include name="org/jboss/test/aop/test/**"/>
+ <include name="org/somepackage/**"/>
+ </fileset>
+ <fileset dir="${build.resources}/aop">
+ <include name="*.*"/>
+ </fileset>
+ </jar>
+
+ <jar jarfile="${build.lib}/aoptest.aop"
+ manifest="${build.etc}/manifest.mf">
+ <fileset dir="${build.classes}">
+ <include name="org/jboss/test/aop/bean/POJO.class"/>
+ <include name="org/jboss/test/aop/bean/SimpleInterceptor.class"/>
+ <include name="org/jboss/test/aop/bean/SimpleInterceptorFactory.class"/>
+ </fileset>
+ <fileset dir="${build.resources}/aop">
+ <include name="META-INF/jboss-aop.xml"/>
+ </fileset>
+ </jar>
+
+ <!-- build aop.jar -->
+ <jar jarfile="${build.lib}/aoptest.sar">
+ <fileset dir="${build.lib}">
+ <include name="aoptest.aop"/>
+ </fileset>
+ <fileset dir="${build.classes}">
+ <include name="org/jboss/test/aop/bean/AOPTester.class"/>
+ <include name="org/jboss/test/aop/bean/AOPTesterMBean.class"/>
+ </fileset>
+ <fileset dir="${build.resources}/aop">
+ <include name="**/jboss-service.xml"/>
+ </fileset>
+ </jar>
+
+ </target>
+
+ <!-- pooled test -->
<target name="_output:pooled" depends="_output:support">
<!-- <mkdir dir="${build.lib}"/> -->
@@ -3907,6 +3954,7 @@
<include name="**/cmp2/**/*UnitTestCase.class"/>
<include name="**/dbtest/**/*UnitTestCase.class"/>
<include name="**/deadlock/**/*StressTestCase.class"/>
+ <include name="**/aop/**/*UnitTestCase.class"/>
<include name="**/entityexc/**/*UnitTestCase.class"/>
<include name="**/idgen/**/*UnitTestCase.class"/>
<include name="**/perf/**/*UnitTestCase.class"/>
|