Author: smishura
Date: Thu Sep 20 03:18:18 2007
New Revision: 577670
URL: http://svn.apache.org/viewvc?rev=577670&view=rev
Log:
Fix TPTP adaptor: clean working dir before each run
Modified:
harmony/enhanced/buildtest/branches/2.0/adaptors/tptp/adaptor.xml
Modified: harmony/enhanced/buildtest/branches/2.0/adaptors/tptp/adaptor.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/buildtest/branches/2.0/adaptors/tptp/adaptor.xml?rev=577670&r1=577669&r2=577670&view=diff
==============================================================================
--- harmony/enhanced/buildtest/branches/2.0/adaptors/tptp/adaptor.xml (original)
+++ harmony/enhanced/buildtest/branches/2.0/adaptors/tptp/adaptor.xml Thu Sep 20 03:18:18
2007
@@ -35,8 +35,14 @@
<!-- update suite resources from SVN -->
<svn-update-bt path="${tests.dir}"/>
+ </target>
+
+ <!-- Run the TPTP profiler test suite -->
+ <target name="run" description="Run TPTP profiler tests.">
+ <log message="============= Adaptor for ${suite.name}. Run .."/>
<!-- make the dir to store built tests -->
+ <delete dir="${work.dir}"/>
<mkdir dir="${work.dir}/${tests.module}"/>
<!-- Copy tests from build to build/checkouts/tptp -->
@@ -56,11 +62,6 @@
<javac srcdir="${work.dir}"
destdir="${work.dir}"
includes="*.java"/>
- </target>
-
- <!-- Run the TPTP profiler test suite -->
- <target name="run" description="Run TPTP profiler tests.">
- <log message="============= Adaptor for ${suite.name}. Run .."/>
<!-- Copy exclude list file for updating suite's config -->
<copy todir="${tptp.results}" file="${tests.dir}/${tptp.parameters.optional.exclude.list}"/>
|