|
From: Francisco R. <rev...@us...> - 2003-09-25 15:38:04
|
User: reverbel
Date: 03/09/25 08:38:02
Modified: . Tag: Branch_3_2 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
No revision
No revision
1.165.2.104 +32 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.165.2.103
retrieving revision 1.165.2.104
diff -u -r1.165.2.103 -r1.165.2.104
--- build.xml 24 Sep 2003 21:28:06 -0000 1.165.2.103
+++ build.xml 25 Sep 2003 15:38:01 -0000 1.165.2.104
@@ -15,7 +15,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.165.2.103 2003/09/24 21:28:06 ejort Exp $ -->
+<!-- $Id: build.xml,v 1.165.2.104 2003/09/25 15:38:01 reverbel Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -1016,6 +1016,7 @@
_jars-helloiiop,
_jars-bankiiop,
_jars-hellojrmpiiop,
+ _jars-iiop,
_jars-excepiiop,
_jars-marathon,
_jars-entity,
@@ -1488,6 +1489,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="common.test.application.classes"/>
+ <include name="org/jboss/test/iiop/interfaces/**"/>
+ <include name="org/jboss/test/iiop/util/**"/>
+ <include name="org/jboss/test/iiop/ejb/**"/>
</fileset>
</jar>
</target>
|