|
From: Scott M S. <st...@us...> - 2002-09-23 13:51:30
|
User: starksm
Date: 02/09/23 06:51:28
Modified: . Tag: Branch_3_0 build.xml
Log:
Seperate the security related naming tests
Revision Changes Path
No revision
No revision
1.106.2.45 +14 -2 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.106.2.44
retrieving revision 1.106.2.45
diff -u -r1.106.2.44 -r1.106.2.45
--- build.xml 31 Aug 2002 23:01:33 -0000 1.106.2.44
+++ build.xml 23 Sep 2002 13:51:27 -0000 1.106.2.45
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.106.2.44 2002/08/31 23:01:33 ejort Exp $ -->
+<!-- $Id: build.xml,v 1.106.2.45 2002/09/23 13:51:27 starksm Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -2089,7 +2089,16 @@
<include name="org/somepackage/**"/>
</fileset>
<fileset dir="${build.resources}/testbeancluster">
- <include name="**/*.xml"/>
+ <include name="META-INF/*.xml"/>
+ </fileset>
+ </jar>
+
+ <jar jarfile="${build.lib}/clusterinfo.sar">
+ <metainf dir="${build.resources}/testbeancluster/clusterinfo">
+ <include name="jboss-service.xml" />
+ </metainf>
+ <fileset dir="${build.classes}">
+ <include name="org/jboss/test/testbeancluster/service/**"/>
</fileset>
</jar>
</target>
@@ -2966,6 +2975,7 @@
<!-- do not include the dyn loading or security tests -->
<exclude name="**/test/jrmp/test/DynLoadingUnitTestCase.class"/>
+ <exclude name="**/test/naming/test/Security*"/>
<exclude name="**/test/security/test/*"/>
<exclude name="**/test/securitymgr/test/*"/>
@@ -3023,6 +3033,7 @@
<!-- do not include the perf, security, or iiop tests -->
<!--mq test seems to break things-->
<!--exclude name="**/JBossMQPerfStressTestCase.class"/-->
+ <exclude name="**/test/naming/test/Security*"/>
<exclude name="**/test/perf/test/SecurePerfStressTestCase.class"/>
<exclude name="**/test/security/test/*"/>
<exclude name="**/test/securitymgr/test/*"/>
@@ -3174,6 +3185,7 @@
<fileset dir="${build.classes}">
<exclude name="**/test/security/test/SRPUnitTestCase.class"/>
+ <include name="**/test/naming/test/Security*"/>
<include name="**/test/security/test/**UnitTestCase.class"/>
</fileset>
</batchtest>
|