|
From: Bill B. <pat...@us...> - 2004-07-16 15:32:55
|
User: patriot1burke
Date: 04/07/16 08:32:46
Modified: . build.xml
Log:
added regression test for EJB interception tests
Revision Changes Path
1.373 +25 -2 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.372
retrieving revision 1.373
diff -u -r1.372 -r1.373
--- build.xml 13 Jul 2004 00:59:18 -0000 1.372
+++ build.xml 16 Jul 2004 15:32:45 -0000 1.373
@@ -15,7 +15,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.372 2004/07/13 00:59:18 patriot1burke Exp $ -->
+<!-- $Id: build.xml,v 1.373 2004/07/16 15:32:45 patriot1burke Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -1513,6 +1513,8 @@
<metainf dir="${build.resources}/aop/simpleejb/META-INF/"/>
</jar>
+
+
<jar jarfile="${build.lib}/aop-call-logging.aop">
<fileset dir="${build.classes}">
<include name="org/jboss/test/aop/test/CallLoggingUnitTestCase.class"/>
@@ -1572,6 +1574,7 @@
<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"/>
+ <include name="org/jboss/test/aop/bean/SimpleBeanCallerInterceptor.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"/>
@@ -1582,7 +1585,6 @@
</fileset>
</jar>
- <!-- build aop.jar -->
<jar jarfile="${build.lib}/aoptest.sar">
<fileset dir="${build.lib}">
<include name="aoptest.aop"/>
@@ -1617,6 +1619,27 @@
<include name="META-INF/jboss-service.xml"/>
</fileset>
</jar>
+
+ <jar jarfile="${build.lib}/simpleejb.sar">
+ <fileset dir="${build.lib}">
+ <include name="aoptest.aop"/>
+ </fileset>
+ <fileset dir="${build.lib}">
+ <include name="simpleejb.jar"/>
+ </fileset>
+ <fileset dir="${build.classes}">
+ <include name="org/jboss/test/aop/bean/SimpleBeanTester.class"/>
+ <include name="org/jboss/test/aop/bean/SimpleBeanTesterMBean.class"/>
+ </fileset>
+ <fileset dir="${build.resources}/aop">
+ <include name="users.properties"/>
+ <include name="roles.properties"/>
+ </fileset>
+ <fileset dir="${build.resources}/aop/simpleejb">
+ <include name="META-INF/jboss-service.xml"/>
+ </fileset>
+ </jar>
+
<!-- ok, we have created the loadtime jars, let us now precompile the classes for standalone test -->
<aopc compilerclasspathref="aop.task.classpath">
|