|
From: Dain S. <dsu...@us...> - 2002-08-06 22:04:57
|
User: dsundstrom
Date: 02/08/06 15:04:57
Modified: . Tag: Branch_3_0 build.xml
Log:
Added test for exception spec compliancy.
Revision Changes Path
No revision
No revision
1.106.2.39 +23 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.106.2.38
retrieving revision 1.106.2.39
diff -u -r1.106.2.38 -r1.106.2.39
--- build.xml 3 Aug 2002 22:36:00 -0000 1.106.2.38
+++ build.xml 6 Aug 2002 22:04:56 -0000 1.106.2.39
@@ -13,7 +13,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.106.2.38 2002/08/03 22:36:00 reverbel Exp $ -->
+<!-- $Id: build.xml,v 1.106.2.39 2002/08/06 22:04:56 dsundstrom Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -781,6 +781,7 @@
_jars-web,
_jars-bench,
_jars-security,
+ _jars-exception,
_jars-cmp2,
_jars-jsr77,
_jars-jbossmx,
@@ -2550,6 +2551,27 @@
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">
|