소스 검색

HADOOP-6742. Add methods HADOOP-6709 from to TestFilterFileSystem. Contributed by Eli Collins.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@939864 13f79535-47bb-0310-9956-ffa450edef68
Thomas White 15 년 전
부모
커밋
494ef1e48c
2개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      CHANGES.txt
  2. 2 0
      src/test/core/org/apache/hadoop/fs/TestFilterFileSystem.java

+ 3 - 0
CHANGES.txt

@@ -388,6 +388,9 @@ Trunk (unreleased changes)
     HADOOP-6630. hadoop-config.sh fails to get executed if hadoop wrapper
     scripts are in path. (Allen Wittenauer via tomwhite)
 
+    HADOOP-6742. Add methods HADOOP-6709 from to TestFilterFileSystem.
+    (Eli Collins via tomwhite)
+
 Release 0.21.0 - Unreleased
 
   INCOMPATIBLE CHANGES

+ 2 - 0
src/test/core/org/apache/hadoop/fs/TestFilterFileSystem.java

@@ -94,6 +94,8 @@ public class TestFilterFileSystem extends TestCase {
         Progressable progress) {
       return null;
     }
+    public String getName() { return null; }
+    public boolean delete(Path f) { return false; }
     public short getReplication(Path src) { return 0 ; }
     public void processDeleteOnExit() { }
     public ContentSummary getContentSummary(Path f) { return null; }