Explorar o código

HDFS-2383. Remove TestDfsOverAvroRpc for 0.22 branch. Contributed by Konstantin Shvachko.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.22@1177392 13f79535-47bb-0310-9956-ffa450edef68
Konstantin Shvachko %!s(int64=13) %!d(string=hai) anos
pai
achega
1d0dcd6acc

+ 2 - 0
hdfs/CHANGES.txt

@@ -638,6 +638,8 @@ Release 0.22.0 - Unreleased
     HDFS-2388. Remove ivy dependency on different version of slf4j in avro.
     (shv)
 
+    HDFS-2383. Remove TestDfsOverAvroRpc for 0.22 branch. (shv)
+
 Release 0.21.1 - Unreleased
 
   IMPROVEMENTS

+ 0 - 33
hdfs/src/test/hdfs/org/apache/hadoop/hdfs/TestDfsOverAvroRpc.java

@@ -1,33 +0,0 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.hadoop.hdfs;
-
-import java.io.IOException;
-
-/** Test for simple signs of life using Avro RPC.  Not an exhaustive test
- * yet, just enough to catch fundamental problems using Avro reflection to
- * infer namenode RPC protocols. */
-public class TestDfsOverAvroRpc extends TestLocalDFS {
-
-  public void testWorkingDirectory() throws IOException {
-    System.setProperty("hdfs.rpc.engine",
-                       "org.apache.hadoop.ipc.AvroRpcEngine");
-    super.testWorkingDirectory();
-  }
-
-}