Repository: hadoop Updated Branches: refs/heads/trunk a6432ba5a -> 80ee89b28
HDFS-12417. Disable flaky TestDFSStripedOutputStreamWithFailure. Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/80ee89b2 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/80ee89b2 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/80ee89b2 Branch: refs/heads/trunk Commit: 80ee89b2871ce2b4b7387de6e410f53d798dfd0b Parents: a6432ba 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:56 2017 -0700 ---------------------------------------------------------------------- .../hadoop/hdfs/TestDFSStripedOutputStreamWithFailure.java | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/80ee89b2/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]
