Disable TestDfsOverAvroRpc in 0.23. Contributed by Suresh Srinivas.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1195823 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Suresh Srinivas 2011-11-01 04:55:08 +00:00
parent 92fd345d14
commit f5614e424b
2 changed files with 6 additions and 0 deletions

View File

@ -1168,6 +1168,8 @@ Release 0.23.0 - Unreleased
HDFS-2065. Add null checks in DFSClient.getFileChecksum(..). (Uma HDFS-2065. Add null checks in DFSClient.getFileChecksum(..). (Uma
Maheswara Rao G via szetszwo) Maheswara Rao G via szetszwo)
HDFS-2552. Disable TestDfsOverAvroRpc test. (suresh)
BREAKDOWN OF HDFS-1073 SUBTASKS BREAKDOWN OF HDFS-1073 SUBTASKS
HDFS-1521. Persist transaction ID on disk between NN restarts. HDFS-1521. Persist transaction ID on disk between NN restarts.

View File

@ -24,10 +24,14 @@ import java.io.IOException;
* infer namenode RPC protocols. */ * infer namenode RPC protocols. */
public class TestDfsOverAvroRpc extends TestLocalDFS { public class TestDfsOverAvroRpc extends TestLocalDFS {
// Commenting the test in 0.23. This can be uncommented once
// HADOOP-7524 and HADOOP-7693 is merged into 0.23
/*
public void testWorkingDirectory() throws IOException { public void testWorkingDirectory() throws IOException {
System.setProperty("hdfs.rpc.engine", System.setProperty("hdfs.rpc.engine",
"org.apache.hadoop.ipc.AvroRpcEngine"); "org.apache.hadoop.ipc.AvroRpcEngine");
super.testWorkingDirectory(); super.testWorkingDirectory();
} }
*/
} }