[jboss-cvs] jrunit/src/main/org/jboss/jrunit/harness ...

Ron Sigal ron_sigal at yahoo.com
Fri Mar 7 02:41:45 EST 2008


  User: rsigal  
  Date: 08/03/07 02:41:45

  Modified:    src/main/org/jboss/jrunit/harness  TestDriver.java
  Log:
  JBREM-876: Made some more jgroups parameters configurable.
  
  Revision  Changes    Path
  1.22      +16 -0     jrunit/src/main/org/jboss/jrunit/harness/TestDriver.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: TestDriver.java
  ===================================================================
  RCS file: /cvsroot/jboss/jrunit/src/main/org/jboss/jrunit/harness/TestDriver.java,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -b -r1.21 -r1.22
  --- TestDriver.java	15 Dec 2007 07:20:21 -0000	1.21
  +++ TestDriver.java	7 Mar 2008 07:41:45 -0000	1.22
  @@ -702,6 +702,22 @@
         if (property != null)
            path += " -Djrunit.mcast_addr="  + property + " ";
   
  +      property = System.getProperty("jrunit.mcast_port");
  +      if (property != null)
  +         path += " -Djrunit.mcast_port="  + property + " ";
  +      
  +      property = System.getProperty("jrunit.receive_on_all_interfaces");
  +      if (property != null)
  +         path += " -Djrunit.receive_on_all_interfaces="  + property + " ";
  +      
  +      property = System.getProperty("jrunit.send_on_all_interfaces");
  +      if (property != null)
  +         path += " -Djrunit.send_on_all_interfaces="  + property + " ";
  +      
  +      property = System.getProperty("jrunit.send_interfaces");
  +      if (property != null)
  +         path += " -Djrunit.send_interfaces="  + property + " ";
  +      
         if(vmArgs != null && vmArgs.length() > 0)
         {
            path += " " + vmArgs + " ";
  
  
  



More information about the jboss-cvs-commits mailing list