[jboss-cvs] JBossRemoting ...

Ron Sigal ron_sigal at yahoo.com
Fri Aug 25 00:14:23 EDT 2006


  User: rsigal  
  Date: 06/08/25 00:14:23

  Modified:    JBossRemoting  build.xml
  Log:
  JBREM-562:  Factored out individual transport-specific tasts from tests.performance.sequence.
  
  Revision  Changes    Path
  1.80      +91 -60    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.79
  retrieving revision 1.80
  diff -u -b -r1.79 -r1.80
  --- build.xml	23 Aug 2006 23:30:47 -0000	1.79
  +++ build.xml	25 Aug 2006 04:14:23 -0000	1.80
  @@ -9,7 +9,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.79 2006/08/23 23:30:47 rsigal Exp $ -->
  +<!-- $Id: build.xml,v 1.80 2006/08/25 04:14:23 rsigal Exp $ -->
   
   <project default="most" name="JBossRemoting">
   
  @@ -1074,6 +1074,7 @@
   
     	   <!-- only used by multiplex transport -->
     		<property name="remoting.metadata.callback" value=""/>
  + 
         <antcall target="tests.performance.serialization.java" inheritrefs="true">
            <param name="remoting.host" value="localhost"/>
         </antcall>
  @@ -1157,7 +1158,6 @@
   	  <target name="tests.performance.sequence" depends="configure">
   
   	      <mkdir dir="${output.tests.performance}"/>
  -	
   	      <echo message="${output.lib.dir}"/>
   	      <taskdef name="receiver" classname="org.jboss.jrunit.controller.ant.AntBenchmarkReceiver"
   	               classpathref="tests.classpath"/>
  @@ -1171,37 +1171,68 @@
   	                       className="org.jboss.jrunit.controller.reporters.XrefReporter"/>
   	      </receiver>
   	  	
  -	  	   <!-- only used by multiplex transport -->
  -	  		<property name="remoting.metadata.callback" value=""/>
  +      <antcall target="tests.performance.sequence.http" inheritrefs="true"/>
  +      <antcall target="tests.performance.sequence.multiplex" inheritrefs="true"/>
  +      <antcall target="tests.performance.sequence.rmi" inheritrefs="true"/>
  +      <antcall target="tests.performance.sequence.socket" inheritrefs="true"/>
  +      <antcall target="tests.performance.sequence.raw_rmi" inheritrefs="true"/>
  +      <antcall target="tests.performance.sequence.raw_socket" inheritrefs="true"/>
  +      <antcall target="tests.performance.sequence.spring_rmi" inheritrefs="true"/>
  +   </target>
   	  	
  +   <target name="tests.performance.sequence.http" depends="configure">
   	      <antcall target="tests.performance.seq.run" inheritrefs="true">
   	      	<param name="target" value="tests.performance.seq.run.single"/>
  -	      	<param name="transport" value="rmi"/>
  +         <param name="transport" value="http"/>
  +         <param name="remoting.metadata.callback" value=""/>
   	      </antcall>
  +   </target> 
  +      
  +   <target name="tests.performance.sequence.multiplex" depends="configure">
   	      <antcall target="tests.performance.seq.run" inheritrefs="true">
   	      	<param name="target" value="tests.performance.seq.run.single"/>
  -	      	<param name="transport" value="socket"/>
  +         <param name="transport" value="multiplex"/>
  +         <param name="remoting.metadata.callback" value="&amp;connectHost=localhost&amp;connectPort=9090"/>
   	      </antcall>
  +   </target>
  +   
  +   <target name="tests.performance.sequence.rmi" depends="configure">
   	      <antcall target="tests.performance.seq.run" inheritrefs="true">
   	      	<param name="target" value="tests.performance.seq.run.single"/>
  -	      	<param name="transport" value="http"/>
  +         <param name="transport" value="rmi"/>
  +         <param name="remoting.metadata.callback" value=""/>
   	      </antcall>
  +   </target>
  +   
  +   <target name="tests.performance.sequence.socket" depends="configure">
   	      <antcall target="tests.performance.seq.run" inheritrefs="true">
   	      	<param name="target" value="tests.performance.seq.run.single"/>
  -	      	<param name="transport" value="multiplex"/>
  -	      	<param name="remoting.metadata.callback" value="&amp;connectHost=localhost&amp;connectPort=9090"/>
  +         <param name="transport" value="socket"/>
  +         <param name="remoting.metadata.callback" value=""/>
   	      </antcall>
  +   </target>  
  +   
  +   <target name="tests.performance.sequence.raw_rmi" depends="configure">
   	      <antcall target="tests.performance.seq.run" 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">
   	      	<param name="target" value="tests.performance.raw.socket.run.single"/>
   	      	<param name="transport" value="raw_socket"/>
  +         <param name="remoting.metadata.callback" value=""/>
   	      </antcall>
  +   </target>
  +      
  +   <target name="tests.performance.sequence.spring_rmi" depends="configure">
   	      <antcall target="tests.performance.seq.run" inheritrefs="true">
   	      	<param name="target" value="tests.performance.spring.rmi.run.single"/>
   	      	<param name="transport" value="spring_rmi"/>
  +         <param name="remoting.metadata.callback" value=""/>
   	      </antcall>
   	   </target>
   	
  
  
  



More information about the jboss-cvs-commits mailing list