HADOOP-14372. TestSymlinkLocalFS timeouts are too low. Contributed by Eric Badger.
Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/d4631e46 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/d4631e46 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/d4631e46 Branch: refs/heads/HDFS-7240 Commit: d4631e466bc85ce605061673a31f451353da9713 Parents: d9014bd Author: Kihwal Lee <[email protected]> Authored: Wed May 3 09:47:17 2017 -0500 Committer: Kihwal Lee <[email protected]> Committed: Wed May 3 09:47:17 2017 -0500 ---------------------------------------------------------------------- .../src/test/java/org/apache/hadoop/fs/TestSymlinkLocalFS.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/d4631e46/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/TestSymlinkLocalFS.java ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/TestSymlinkLocalFS.java b/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/TestSymlinkLocalFS.java index 0a51b65..45d63b1 100644 --- a/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/TestSymlinkLocalFS.java +++ b/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/TestSymlinkLocalFS.java @@ -105,7 +105,7 @@ abstract public class TestSymlinkLocalFS extends SymlinkBaseTest { super.testStatDanglingLink(); } - @Test(timeout=1000) + @Test(timeout=10000) /** lstat a non-existant file using a partially qualified path */ public void testDanglingLinkFilePartQual() throws IOException { Path filePartQual = new Path(getScheme()+":///doesNotExist"); @@ -123,7 +123,7 @@ abstract public class TestSymlinkLocalFS extends SymlinkBaseTest { } } - @Test(timeout=1000) + @Test(timeout=10000) /** Stat and lstat a dangling link */ public void testDanglingLink() throws IOException { assumeNotWindows(); @@ -169,7 +169,7 @@ abstract public class TestSymlinkLocalFS extends SymlinkBaseTest { wrapper.getFileStatus(link); } - @Test(timeout=1000) + @Test(timeout=10000) /** * Test getLinkTarget with a partially qualified target. * NB: Hadoop does not support fully qualified URIs for the --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
