You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2011/04/19 11:19:39 UTC

svn commit: r1094958 - /commons/sandbox/runtime/trunk/build.xml

Author: mturk
Date: Tue Apr 19 09:19:39 2011
New Revision: 1094958

URL: http://svn.apache.org/viewvc?rev=1094958&view=rev
Log:
Rename test names so they don't contain spaces since they result as dir names

Modified:
    commons/sandbox/runtime/trunk/build.xml

Modified: commons/sandbox/runtime/trunk/build.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/build.xml?rev=1094958&r1=1094957&r2=1094958&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/build.xml (original)
+++ commons/sandbox/runtime/trunk/build.xml Tue Apr 19 09:19:39 2011
@@ -369,7 +369,7 @@ The Apache Software Foundation (http://w
 
     <macrodef name="runtest">
        <attribute name="groups" default="init"/>
-       <attribute name="name" default="Main Test Suite"/>
+       <attribute name="name" default="test.runtime"/>
        <sequential>
             <testng outputdir="${build.dir}/out/@{name}"
                 workingdir="${build.dir}/out"
@@ -400,11 +400,11 @@ The Apache Software Foundation (http://w
     <target name="testsemaphore" depends="tests">
         <parallel>
             <sequential>
-                <runtest groups="init,semaphore.parent" name="Semaphore Parent"/>
+                <runtest groups="init,semaphore.parent" name="semaphore.parent"/>
             </sequential>
             <sequential>
                 <sleep milliseconds="100" />
-                <runtest groups="init,semaphore.child" name="Semaphore Child"/>
+                <runtest groups="init,semaphore.child" name="semaphore.child"/>
             </sequential>
         </parallel>            
     </target>