Repository: hadoop Updated Branches: refs/heads/branch-2 99e82e2c2 -> db9da432b refs/heads/branch-2.9 74e5b4b43 -> f16472476 refs/heads/branch-3.0 101d9005d -> 7bb2709c4 refs/heads/branch-3.1 ea7ad5049 -> 5b2427cd7 refs/heads/trunk 9b5375e0c -> df92a17e0
HDFS-13336. Test cases of TestWriteToReplica failed in windows. Contributed by Xiao Liang. Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/df92a17e Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/df92a17e Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/df92a17e Branch: refs/heads/trunk Commit: df92a17e02fe86279a6f4e413719d0a465b50837 Parents: 9b5375e Author: Inigo Goiri <[email protected]> Authored: Mon Apr 23 19:12:16 2018 -0700 Committer: Inigo Goiri <[email protected]> Committed: Mon Apr 23 19:12:16 2018 -0700 ---------------------------------------------------------------------- .../fsdataset/impl/TestWriteToReplica.java | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/df92a17e/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/datanode/fsdataset/impl/TestWriteToReplica.java ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/datanode/fsdataset/impl/TestWriteToReplica.java b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/datanode/fsdataset/impl/TestWriteToReplica.java index 14ac95f..2c5df28 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/datanode/fsdataset/impl/TestWriteToReplica.java +++ b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/datanode/fsdataset/impl/TestWriteToReplica.java @@ -21,6 +21,7 @@ import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.fail; +import java.io.File; import java.io.IOException; import java.io.RandomAccessFile; import java.util.ArrayList; @@ -64,7 +65,8 @@ public class TestWriteToReplica { // test close @Test public void testClose() throws Exception { - MiniDFSCluster cluster = new MiniDFSCluster.Builder(new HdfsConfiguration()).build(); + MiniDFSCluster cluster = new MiniDFSCluster.Builder(new HdfsConfiguration(), + new File(GenericTestUtils.getRandomizedTempPath())).build(); try { cluster.waitActive(); @@ -86,7 +88,8 @@ public class TestWriteToReplica { // test append @Test public void testAppend() throws Exception { - MiniDFSCluster cluster = new MiniDFSCluster.Builder(new HdfsConfiguration()).build(); + MiniDFSCluster cluster = new MiniDFSCluster.Builder(new HdfsConfiguration(), + new File(GenericTestUtils.getRandomizedTempPath())).build(); try { cluster.waitActive(); DataNode dn = cluster.getDataNodes().get(0); @@ -106,7 +109,8 @@ public class TestWriteToReplica { // test writeToRbw @Test public void testWriteToRbw() throws Exception { - MiniDFSCluster cluster = new MiniDFSCluster.Builder(new HdfsConfiguration()).build(); + MiniDFSCluster cluster = new MiniDFSCluster.Builder(new HdfsConfiguration(), + new File(GenericTestUtils.getRandomizedTempPath())).build(); try { cluster.waitActive(); DataNode dn = cluster.getDataNodes().get(0); @@ -126,7 +130,8 @@ public class TestWriteToReplica { // test writeToTemporary @Test public void testWriteToTemporary() throws Exception { - MiniDFSCluster cluster = new MiniDFSCluster.Builder(new HdfsConfiguration()).build(); + MiniDFSCluster cluster = new MiniDFSCluster.Builder(new HdfsConfiguration(), + new File(GenericTestUtils.getRandomizedTempPath())).build(); try { cluster.waitActive(); DataNode dn = cluster.getDataNodes().get(0); @@ -512,7 +517,8 @@ public class TestWriteToReplica { @Test public void testReplicaMapAfterDatanodeRestart() throws Exception { Configuration conf = new HdfsConfiguration(); - MiniDFSCluster cluster = new MiniDFSCluster.Builder(conf) + MiniDFSCluster cluster = new MiniDFSCluster.Builder(conf, + new File(GenericTestUtils.getRandomizedTempPath())) .nnTopology(MiniDFSNNTopology.simpleFederatedTopology(2)) .build(); try { @@ -566,7 +572,8 @@ public class TestWriteToReplica { @Test public void testRecoverInconsistentRbw() throws IOException { Configuration conf = new HdfsConfiguration(); - MiniDFSCluster cluster = new MiniDFSCluster.Builder(conf).build(); + MiniDFSCluster cluster = new MiniDFSCluster.Builder(conf, + new File(GenericTestUtils.getRandomizedTempPath())).build(); cluster.waitActive(); DataNode dn = cluster.getDataNodes().get(0); FsDatasetImpl fsDataset = (FsDatasetImpl)DataNodeTestUtils.getFSDataset(dn); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
