You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ha...@apache.org on 2005/06/14 18:38:49 UTC

cvs commit: ws-axis/c test.xml

hawkeye     2005/06/14 09:38:49

  Modified:    c        test.xml
  Log:
  Fixed problem of: Moving the testmonitor fails when run straight after the
  unit tests.
  
  Revision  Changes    Path
  1.32      +3 -2      ws-axis/c/test.xml
  
  Index: test.xml
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/test.xml,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- test.xml	9 Jun 2005 10:03:07 -0000	1.31
  +++ test.xml	14 Jun 2005 16:38:49 -0000	1.32
  @@ -28,7 +28,8 @@
   	difference. So, as the monitor is only built when a test is run, this is the right place to move it from there to the 
   	obj directory so it does not interfere with the cvs update process.
   		</description>
  -		<move todir="${dir.obj}/test/monitor">
  +		<!-- moving the monitor fails if it's been used already so set "failonerror=false"-->
  +		<move todir="${dir.obj}/test/monitor" failonerror="false">
   			<fileset dir="${basedir}/tests/utils/monitor">
   				<include name="**/*.class"/>
   				<include name="*.jar"/>
  @@ -112,7 +113,7 @@
   	<!--
   	  Build test
   	  -->
  -	<target name="buildTest" depends="setPropertiesForThisTest, compileTestClient, validateClientCompilation, createConfigurationFile, compileHandlers"/>
  +	<target name="buildTest" depends="setPropertiesForThisTest, compileTestClient, validateClientCompilation, compileHandlers"/>
   
   	<target name="setPropertiesForThisTest" depends="checkIfRequestFile">
   		<property name="test.directory" value="${dir.test.generated}/${test.clientLang}/${test.name}"/>