[jboss-cvs] JBossRemoting/src/tests/org/jboss/test/remoting/performance/synchronous ...

Tom Elrod tom.elrod at jboss.com
Wed Aug 23 09:47:15 EDT 2006


  User: telrod  
  Date: 06/08/23 09:47:15

  Modified:    src/tests/org/jboss/test/remoting/performance/synchronous 
                        PerformanceTestCase.java
  Log:
  JBREM-562 - fix for performance test where transport not being picked up as system property due to error in change when adding host as system property config.
  
  Revision  Changes    Path
  1.12      +1 -1      JBossRemoting/src/tests/org/jboss/test/remoting/performance/synchronous/PerformanceTestCase.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: PerformanceTestCase.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/tests/org/jboss/test/remoting/performance/synchronous/PerformanceTestCase.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -b -r1.11 -r1.12
  --- PerformanceTestCase.java	18 Aug 2006 17:59:03 -0000	1.11
  +++ PerformanceTestCase.java	23 Aug 2006 13:47:15 -0000	1.12
  @@ -151,7 +151,7 @@
         String host = System.getProperty(REMOTING_HOST);
         if(host != null && host.length() > 0)
         {
  -         vmArgs = "-D" + REMOTING_HOST + "=" + host;
  +         vmArgs = vmArgs + "-D" + REMOTING_HOST + "=" + host;
         }
         String serialization = System.getProperty(REMOTING_SERIALIZATION);
         if(serialization != null && serialization.length() > 0)
  
  
  



More information about the jboss-cvs-commits mailing list