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
diff --git a/CHANGES.txt b/CHANGES.txt
index 2232e83..90e2843 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -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
diff --git a/build.xml b/build.xml
index eca13ed..602fcfe 100644
--- a/build.xml
+++ b/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>