Browse Source

HADOOP-6575. Remove call to fault injection tests not present in 0.20.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.20@911527 13f79535-47bb-0310-9956-ffa450edef68
Christopher Douglas 15 years ago
parent
commit
e730055f76
2 changed files with 4 additions and 2 deletions
  1. 3 0
      CHANGES.txt
  2. 1 2
      build.xml

+ 3 - 0
CHANGES.txt

@@ -5,6 +5,9 @@ Release 0.20.3 - Unreleased
     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

+ 1 - 2
build.xml

@@ -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>