|
From: Francisco R. <rev...@us...> - 2003-09-26 15:59:31
|
User: reverbel
Date: 03/09/26 08:59:29
Modified: . build.xml
Log:
IIOP parameter passing test added to the testsuite. This test was designed
to catch marshaling/unmarshaling bugs such as the ones I have just fixed.
Revision Changes Path
1.295 +32 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.294
retrieving revision 1.295
diff -u -r1.294 -r1.295
--- build.xml 24 Sep 2003 21:36:53 -0000 1.294
+++ build.xml 26 Sep 2003 15:59:28 -0000 1.295
@@ -15,7 +15,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.294 2003/09/24 21:36:53 ejort Exp $ -->
+<!-- $Id: build.xml,v 1.295 2003/09/26 15:59:28 reverbel Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -1122,6 +1122,7 @@
_jars-helloiiop,
_jars-bankiiop,
_jars-hellojrmpiiop,
+ _jars-iiop,
_jars-excepiiop,
_jars-marathon,
_jars-entity,
@@ -1594,6 +1595,36 @@
<patternset refid="jboss.test.util.ejb.set"/>
<include name="org/jboss/test/hellojrmpiiop/interfaces/**"/>
<include name="org/jboss/test/hellojrmpiiop/ejb/**"/>
+ </fileset>
+ </jar>
+ </target>
+
+ <!-- iiop parameter passing test -->
+ <target name="_jars-iiop">
+ <mkdir dir="${build.lib}"/>
+
+ <!-- build iioptest.jar -->
+ <jar jarfile="${build.lib}/iioptest.jar"
+ manifest="${build.etc}/manifest.mf">
+ <fileset dir="${build.classes}">
+ <patternset refid="common.test.client.classes"/>
+ <include name="org/jboss/test/iiop/interfaces/**"/>
+ <include name="org/jboss/test/iiop/util/**"/>
+ <include name="org/jboss/test/iiop/test/**"/>
+ </fileset>
+ <fileset dir="${build.resources}/iiop">
+ <include name="*.*"/>
+ </fileset>
+ </jar>
+
+ <!-- build iiop.jar -->
+ <jar jarfile="${build.lib}/iiop.jar">
+ <metainf dir="${build.resources}/iiop/META-INF" />
+ <fileset dir="${build.classes}">
+ <patternset refid="jboss.test.util.ejb.set"/>
+ <include name="org/jboss/test/iiop/interfaces/**"/>
+ <include name="org/jboss/test/iiop/util/**"/>
+ <include name="org/jboss/test/iiop/ejb/**"/>
</fileset>
</jar>
</target>
|