|
From: Scott M S. <st...@us...> - 2005-02-25 02:38:31
|
User: starksm Date: 05/02/24 18:38:05 Modified: . Tag: Branch_4_0 build.xml Log: Add org.jboss.test.jca.test.SecurityContextUnitTestCase to the security.includes/security.excludes patternsets as this requires the proper security configuration. Revision Changes Path No revision No revision 1.406.2.42 +3 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.406.2.41 retrieving revision 1.406.2.42 diff -u -r1.406.2.41 -r1.406.2.42 --- build.xml 24 Feb 2005 15:22:05 -0000 1.406.2.41 +++ build.xml 25 Feb 2005 02:38:04 -0000 1.406.2.42 @@ -6,7 +6,7 @@ <!-- See terms of license at http://www.gnu.org. --> <!-- ============================================================ --> -<!-- $Id: build.xml,v 1.406.2.41 2005/02/24 15:22:05 andd Exp $ --> +<!-- $Id: build.xml,v 1.406.2.42 2005/02/25 02:38:04 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> <import file="../tools/etc/buildmagic/build-common.xml"/> @@ -436,6 +436,7 @@ <patternset id="security.includes"> <include name="**/test/naming/test/Security*"/> <include name="**/test/security/test/*UnitTestCase.class"/> + <include name="**/test/jca/test/SecurityContextUnitTestCase.class"/> <include name="**/test/jmx/test/Secure*TestCase.class"/> <include name="**/test/jrmp/test/DynLoadingUnitTestCase.class"/> <include name="**/test/perf/test/SecurePerfStressTestCase.class"/> @@ -444,6 +445,7 @@ <patternset id="security.excludes"> <exclude name="**/test/naming/test/Security*"/> <exclude name="**/test/security/test/*UnitTestCase.class"/> + <exclude name="**/test/jca/test/SecurityContextUnitTestCase.class"/> <exclude name="**/test/jmx/test/Secure*"/> <exclude name="**/test/jrmp/test/DynLoadingUnitTestCase.class"/> <exclude name="**/test/perf/test/SecurePerfStressTestCase.class"/> |