|
From: Scott M S. <st...@us...> - 2002-10-02 20:59:01
|
User: starksm
Date: 02/10/02 13:58:59
Modified: . Tag: Branch_3_2 build.xml
Log:
Add a concurrentloader.ear to test multi-threaded class loading through
a HeirarchicalLoaderRepository2
Revision Changes Path
No revision
No revision
1.165.2.8 +13 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.165.2.7
retrieving revision 1.165.2.8
diff -u -r1.165.2.7 -r1.165.2.8
--- build.xml 24 Sep 2002 15:35:20 -0000 1.165.2.7
+++ build.xml 2 Oct 2002 20:58:58 -0000 1.165.2.8
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.165.2.7 2002/09/24 15:35:20 starksm Exp $ -->
+<!-- $Id: build.xml,v 1.165.2.8 2002/10/02 20:58:58 starksm Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -3052,6 +3052,18 @@
<include name="org/jboss/test/classloader/concurrentload/**"/>
</fileset>
</jar>
+ <!-- build concurrentloader.ear which deploys the concurrentloader.sar
+ with a HeirarchicalLoaderRepository
+ -->
+ <ear earfile="${build.lib}/concurrentloader.ear"
+ appxml="${build.resources}/classloader/concurrentloader/application.xml">
+ <metainf dir="${build.resources}/classloader/concurrentloader">
+ <include name="jboss-app.xml" />
+ </metainf>
+ <fileset dir="${build.lib}">
+ <include name="concurrentloader.sar" />
+ </fileset>
+ </ear>
<!-- build circularity.sar -->
<jar jarfile="${build.lib}/circularity.sar">
|