[jboss-cvs] JBoss Messaging SVN: r2064 - trunk/tests.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Jan 25 23:53:46 EST 2007


Author: ovidiu.feodorov at jboss.com
Date: 2007-01-25 23:53:46 -0500 (Thu, 25 Jan 2007)
New Revision: 2064

Modified:
   trunk/tests/build.xml
Log:
fixed java.io.FileNotFoundException: /logs/messaging-.log (No such file or directory) that used to show up on Linux when running remote tests

Modified: trunk/tests/build.xml
===================================================================
--- trunk/tests/build.xml	2007-01-26 02:07:07 UTC (rev 2063)
+++ trunk/tests/build.xml	2007-01-26 04:53:46 UTC (rev 2064)
@@ -334,7 +334,10 @@
    <target name="stop-rmi-server" depends="init"
            description="Stops the RMI server used by remote tests">
       <java classname="org.jboss.test.messaging.tools.jmx.rmi.StopRMIServer"
-            classpathref="test.execution.classpath"/>
+            classpathref="test.execution.classpath">
+         <sysproperty key="module.output" value="${tests.output}"/>
+         <sysproperty key="test.logfile.suffix" value="stop-rmi-server"/>
+     </java>
    </target>
 
    <target name="stop-rmi-server-clustering" depends="init"
@@ -342,6 +345,8 @@
       <java classname="org.jboss.test.messaging.tools.jmx.rmi.StopRMIServer"
             classpathref="test.execution.classpath">
          <sysproperty key="test.server.index" value="${test.server.index}"/>
+         <sysproperty key="module.output" value="${tests.output}"/>
+         <sysproperty key="test.logfile.suffix" value="stop-rmi-server-clustering"/>
       </java>
    </target>
 




More information about the jboss-cvs-commits mailing list