|
From: Scott M S. <st...@us...> - 2002-09-16 14:42:04
|
User: starksm
Date: 02/09/16 07:42:03
Modified: . Tag: Branch_3_2 build.xml
Log:
Include the ${build.resources}/security in the classpath of the test
target for those tests that need common security resources
Revision Changes Path
No revision
No revision
1.165.2.6 +3 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.165.2.5
retrieving revision 1.165.2.6
diff -u -r1.165.2.5 -r1.165.2.6
--- build.xml 31 Aug 2002 23:12:26 -0000 1.165.2.5
+++ build.xml 16 Sep 2002 14:42:02 -0000 1.165.2.6
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.165.2.5 2002/08/31 23:12:26 ejort Exp $ -->
+<!-- $Id: build.xml,v 1.165.2.6 2002/09/16 14:42:02 starksm Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -4086,6 +4086,8 @@
<classpath>
<pathelement location="${build.classes}"/>
<pathelement location="${build.resources}"/>
+ <!-- Include for those tests that need common security resources -->
+ <pathelement location="${build.resources}/security"/>
<path refid="tests.classpath"/>
</classpath>
|