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

Ron Sigal ron_sigal at yahoo.com
Sat Dec 15 02:20:21 EST 2007


  User: rsigal  
  Date: 07/12/15 02:20:21

  Modified:    src/main/org/jboss/jrunit/harness  TestDriver.java
  Log:
  JBREM-876: Added spaces around system properties in getSystemProperties().
  
  Revision  Changes    Path
  1.21      +3 -3      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.20
  retrieving revision 1.21
  diff -u -b -r1.20 -r1.21
  --- TestDriver.java	15 Dec 2007 07:08:05 -0000	1.20
  +++ TestDriver.java	15 Dec 2007 07:20:21 -0000	1.21
  @@ -627,7 +627,7 @@
                                " " + testClassName + " " + number + " " +
                                getTestLogLevel() + " " + getTestHarnessLogLevel() + " " +
                                getTearDownTimeout() + " " + getRunTestTimeout();
  -            log.info("execCmd: " + execCmd);
  +            log.error("execCmd: " + execCmd);
               //System.out.println("execCmd: " + execCmd);
   
               try
  @@ -696,11 +696,11 @@
         
         String property = System.getProperty("jrunit.bind_addr");
         if (property != null)
  -         path += " -Djrunit.bind_addr="  + property;
  +         path += " -Djrunit.bind_addr="  + property + " ";
         
         property = System.getProperty("jrunit.mcast_addr");
         if (property != null)
  -         path += " -Djrunit.mcast_addr="  + property;
  +         path += " -Djrunit.mcast_addr="  + property + " ";
   
         if(vmArgs != null && vmArgs.length() > 0)
         {
  
  
  



More information about the jboss-cvs-commits mailing list