Repository: hadoop Updated Branches: refs/heads/branch-3.0 619d61080 -> 4e458e93f
HDFS-12417. Disable flaky TestDFSStripedOutputStreamWithFailure. (cherry picked from commit 80ee89b2871ce2b4b7387de6e410f53d798dfd0b) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/4e458e93 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/4e458e93 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/4e458e93 Branch: refs/heads/branch-3.0 Commit: 4e458e93f35046449f9aa458a2e3e1809979d628 Parents: 619d610 Author: Andrew Wang <[email protected]> Authored: Tue Sep 12 11:20:56 2017 -0700 Committer: Andrew Wang <[email protected]> Committed: Tue Sep 12 11:20:59 2017 -0700 ---------------------------------------------------------------------- .../hadoop/hdfs/TestDFSStripedOutputStreamWithFailure.java | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/4e458e93/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/TestDFSStripedOutputStreamWithFailure.java ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/TestDFSStripedOutputStreamWithFailure.java b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/TestDFSStripedOutputStreamWithFailure.java index f63a353..6b94a08 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/TestDFSStripedOutputStreamWithFailure.java +++ b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/TestDFSStripedOutputStreamWithFailure.java @@ -259,6 +259,8 @@ public class TestDFSStripedOutputStreamWithFailure { @Test(timeout=240000) public void testBlockTokenExpired() throws Exception { + // TODO: this is very flaky, re-enable it later. See HDFS-12417. + assumeTrue("Test has been temporarily disabled. See HDFS-12417.", false); final int length = dataBlocks * (blockSize - cellSize); final HdfsConfiguration conf = newHdfsConfiguration(); @@ -631,6 +633,8 @@ public class TestDFSStripedOutputStreamWithFailure { private void run(int offset) { int base = getBase(); + // TODO: Fix and re-enable these flaky tests. See HDFS-12417. + assumeTrue("Test has been temporarily disabled. See HDFS-12417.", false); assumeTrue(base >= 0); final int i = offset + base; final Integer length = getLength(i); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
