From: Francisco R. <rev...@us...> - 2004-02-16 02:31:23
|
User: reverbel Date: 04/02/15 18:23:47 Modified: . build.xml Log: Add test case for IIOP UserTransaction. Revision Changes Path 1.335 +34 -1 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.334 retrieving revision 1.335 diff -u -r1.334 -r1.335 --- build.xml 15 Feb 2004 01:30:42 -0000 1.334 +++ build.xml 16 Feb 2004 02:23:46 -0000 1.335 @@ -15,7 +15,7 @@ <!-- --> <!-- ====================================================================== --> -<!-- $Id: build.xml,v 1.334 2004/02/15 01:30:42 bwang00 Exp $ --> +<!-- $Id: build.xml,v 1.335 2004/02/16 02:23:46 reverbel Exp $ --> <project default="main" name="JBoss/Testsuite"> @@ -1321,6 +1321,7 @@ _jars-hellojrmpiiop, _jars-iiop, _jars-excepiiop, + _jars-txiiop, _jars-marathon, _jars-entity, _jars-tm, @@ -1873,6 +1874,34 @@ </jar> </target> + <!-- txiiop test --> + <target name="_jars-txiiop"> + <mkdir dir="${build.lib}"/> + + <!-- build txiioptest.jar --> + <jar jarfile="${build.lib}/txiioptest.jar" + manifest="${build.etc}/manifest.mf"> + <fileset dir="${build.classes}"> + <patternset refid="common.test.client.classes"/> + <include name="org/jboss/test/txiiop/interfaces/**"/> + <include name="org/jboss/test/txiiop/test/**"/> + </fileset> + <fileset dir="${build.resources}/txiiop"> + <include name="*.*"/> + </fileset> + </jar> + + <!-- build txiiop.jar --> + <jar jarfile="${build.lib}/txiiop.jar"> + <metainf dir="${build.resources}/txiiop/META-INF" /> + <fileset dir="${build.classes}"> + <patternset refid="jboss.test.util.ejb.set"/> + <include name="org/jboss/test/txiiop/interfaces/**"/> + <include name="org/jboss/test/txiiop/ejb/**"/> + </fileset> + </jar> + </target> + <!-- idgen test --> <target name="_jars-idgen"> <mkdir dir="${build.lib}"/> @@ -6090,6 +6119,8 @@ <jvmarg value="-Djacorb.log.loggerFactory=org.jboss.util.Log4jLoggerFactory"/> <jvmarg value="-Djacorb.security.ssl.client.supported_options=0"/> <jvmarg value="-Djacorb.security.ssl.client.required_options=0"/> + <jvmarg value="-DORBInitRef.NameService=corbaloc::localhost:3528/JBoss/Naming/root"/> + <jvmarg value="-Dorg.omg.PortableInterceptor.ORBInitializerClass.org.jboss.tm.iiop.TxClientInterceptorInitializer"/> <jvmarg value="-Djava.security.manager"/> <sysproperty key="java.security.policy" value="${build.resources}/security/tst.policy"/> @@ -6259,6 +6290,8 @@ <jvmarg value="-Djacorb.log.loggerFactory=org.jboss.util.Log4jLoggerFactory"/> <jvmarg value="-Djacorb.security.ssl.client.supported_options=0"/> <jvmarg value="-Djacorb.security.ssl.client.required_options=0"/> + <jvmarg value="-DORBInitRef.NameService=corbaloc::localhost:3528/JBoss/Naming/root"/> + <jvmarg value="-Dorg.omg.PortableInterceptor.ORBInitializerClass.org.jboss.tm.iiop.TxClientInterceptorInitializer"/> <jvmarg value="-Djava.security.manager"/> <jvmarg value="-Djava.security.policy==${build.resources}/${test}/client.policy"/> |