|
From: Dain S. <dsu...@us...> - 2002-07-01 20:53:33
|
User: dsundstrom
Date: 02/07/01 13:53:32
Modified: . build.xml
Log:
Added new tests for exception spec compliancy.
Revision Changes Path
1.150 +22 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.149
retrieving revision 1.150
diff -u -r1.149 -r1.150
--- build.xml 29 Jun 2002 07:23:22 -0000 1.149
+++ build.xml 1 Jul 2002 20:53:31 -0000 1.150
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.149 2002/06/29 07:23:22 d_jencks Exp $ -->
+<!-- $Id: build.xml,v 1.150 2002/07/01 20:53:31 dsundstrom Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -850,6 +850,7 @@
_jars-web,
_jars-bench,
_jars-security,
+ _jars-exception,
_jars-cmp2,
_jars-jsr77,
_jars-foedeployer,
@@ -2498,6 +2499,26 @@
includes="junit/**/*.*"/>
</jar>
</target>
+
+ <!-- exception tests -->
+ <target name="_jars-exception">
+ <mkdir dir="${build.lib}"/>
+
+ <!-- build exception.jar -->
+ <jar jarfile="${build.lib}/exception.jar">
+ <fileset dir="${build.classes}">
+ <patternset refid="common.test.client.classes"/>
+ <include name="org/jboss/test/exception/**"/>
+ </fileset>
+ <fileset dir="${build.resources}/exception">
+ <include name="**/*.*"/>
+ </fileset>
+ <zipfileset src="${junitejb.junitejb.lib}/junitejb.jar"
+ includes="net/**/*.*"/>
+ <zipfileset src="${junit.junit.lib}/junit.jar"
+ includes="junit/**/*.*"/>
+ </jar>
+ </target>
<!-- JbossMX tests -->
<target name="_jars-jbossmx">
|