You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by cd...@apache.org on 2010/02/18 19:57:51 UTC

svn commit: r911527 - in /hadoop/common/branches/branch-0.20: CHANGES.txt build.xml

Author: cdouglas
Date: Thu Feb 18 18:57:50 2010
New Revision: 911527

URL: http://svn.apache.org/viewvc?rev=911527&view=rev
Log:
HADOOP-6575. Remove call to fault injection tests not present in 0.20.

Modified:
    hadoop/common/branches/branch-0.20/CHANGES.txt
    hadoop/common/branches/branch-0.20/build.xml

Modified: hadoop/common/branches/branch-0.20/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.20/CHANGES.txt?rev=911527&r1=911526&r2=911527&view=diff
==============================================================================
--- hadoop/common/branches/branch-0.20/CHANGES.txt (original)
+++ hadoop/common/branches/branch-0.20/CHANGES.txt Thu Feb 18 18:57:50 2010
@@ -5,6 +5,9 @@
     MAPREDUCE-623. Resolve javac warnings in mapreduce. (Jothi Padmanabhan
     via sharad)
 
+    HADOOP-6575. Remove call to fault injection tests not present in 0.20.
+    (cdouglas)
+
 Release 0.20.2 - 2010-2-16
 
   NEW FEATURES

Modified: hadoop/common/branches/branch-0.20/build.xml
URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.20/build.xml?rev=911527&r1=911526&r2=911527&view=diff
==============================================================================
--- hadoop/common/branches/branch-0.20/build.xml (original)
+++ hadoop/common/branches/branch-0.20/build.xml Thu Feb 18 18:57:50 2010
@@ -764,12 +764,11 @@
     </subant> 
   </target>
 	  
-  <target name="test" description="Run core, contrib, fault injection tests">
+  <target name="test" description="Run core, contrib tests">
     <delete file="${test.build.dir}/testsfailed"/>
     <property name="continueOnFailure" value="true"/>
     <antcall target="test-core"/>
     <antcall target="test-contrib"/>
-    <antcall target="run-test-core-fault-inject"/>
     <available file="${test.build.dir}/testsfailed" property="testsfailed"/>
     <fail if="testsfailed">Tests failed!</fail>
   </target>