[jboss-cvs] JBossRemoting ...

Ron Sigal ron_sigal at yahoo.com
Sun Sep 3 01:05:17 EDT 2006


  User: rsigal  
  Date: 06/09/03 01:05:17

  Modified:    JBossRemoting  build.xml
  Log:
  JBREM-589:  Fixed tests.performance.sequence.raw_rmi and tests.performance.sequence.raw_socket so that they only run once (with java serialization).
  
  Revision  Changes    Path
  1.85      +10 -16    JBossRemoting/build.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/build.xml,v
  retrieving revision 1.84
  retrieving revision 1.85
  diff -u -b -r1.84 -r1.85
  --- build.xml	31 Aug 2006 01:35:47 -0000	1.84
  +++ build.xml	3 Sep 2006 05:05:17 -0000	1.85
  @@ -9,7 +9,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.84 2006/08/31 01:35:47 rsigal Exp $ -->
  +<!-- $Id: build.xml,v 1.85 2006/09/03 05:05:17 rsigal Exp $ -->
   
   <project default="most" name="JBossRemoting">
   
  @@ -1215,16 +1215,16 @@
         </antcall>
      </target>
   
  -   <target name="tests.performance.sequence.raw_rmi" depends="configure">
  -      <antcall target="tests.performance.seq.run" inheritrefs="true">
  +   <target name="tests.performance.sequence.raw_rmi" depends="configure,tests.performance.check.serialization">
  +      <antcall target="tests.performance.seq.run.one.java" inheritrefs="true">
            <param name="target" value="tests.performance.raw.rmi.run.single"/>
            <param name="transport" value="raw_rmi"/>
            <param name="remoting.metadata.callback" value=""/>
         </antcall>
      </target>
   
  -   <target name="tests.performance.sequence.raw_socket" depends="configure">
  -      <antcall target="tests.performance.seq.run" inheritrefs="true">
  +   <target name="tests.performance.sequence.raw_socket" depends="configure,tests.performance.check.serialization">
  +      <antcall target="tests.performance.seq.run.one.java" inheritrefs="true">
            <param name="target" value="tests.performance.raw.socket.run.single"/>
            <param name="transport" value="raw_socket"/>
            <param name="remoting.metadata.callback" value=""/>
  @@ -1267,14 +1267,8 @@
      </target>
   
      <target name="tests.performance.seq.run" depends="tests.performance.check.serialization">
  -      <antcall target="tests.performance.seq.run.one.java" inheritrefs="true">
  -         <param name="serialization.test" value="${dojava}"/>
  -         <param name="serialization" value="java"/>
  -      </antcall>
  -      <antcall target="tests.performance.seq.run.one.jboss" inheritrefs="true">
  -         <param name="serialization.test" value="${dojava}"/>
  -         <param name="serialization" value="java"/>
  -      </antcall>
  +      <antcall target="tests.performance.seq.run.one.java" inheritrefs="true"/>
  +      <antcall target="tests.performance.seq.run.one.jboss" inheritrefs="true"/>
      </target>
   
      <target name="tests.performance.seq.run.one.java" if="dojava">
  
  
  



More information about the jboss-cvs-commits mailing list