HADOOP-14372. TestSymlinkLocalFS timeouts are too low. Contributed by Eric Badger.

This commit is contained in:
Kihwal Lee 2017-05-03 09:47:17 -05:00
parent d9014bda93
commit d4631e466b
1 changed files with 3 additions and 3 deletions

View File

@ -105,7 +105,7 @@ public void testStatDanglingLink() throws IOException {
super.testStatDanglingLink(); super.testStatDanglingLink();
} }
@Test(timeout=1000) @Test(timeout=10000)
/** lstat a non-existant file using a partially qualified path */ /** lstat a non-existant file using a partially qualified path */
public void testDanglingLinkFilePartQual() throws IOException { public void testDanglingLinkFilePartQual() throws IOException {
Path filePartQual = new Path(getScheme()+":///doesNotExist"); Path filePartQual = new Path(getScheme()+":///doesNotExist");
@ -123,7 +123,7 @@ public void testDanglingLinkFilePartQual() throws IOException {
} }
} }
@Test(timeout=1000) @Test(timeout=10000)
/** Stat and lstat a dangling link */ /** Stat and lstat a dangling link */
public void testDanglingLink() throws IOException { public void testDanglingLink() throws IOException {
assumeNotWindows(); assumeNotWindows();
@ -169,7 +169,7 @@ public void testDanglingLink() throws IOException {
wrapper.getFileStatus(link); wrapper.getFileStatus(link);
} }
@Test(timeout=1000) @Test(timeout=10000)
/** /**
* Test getLinkTarget with a partially qualified target. * Test getLinkTarget with a partially qualified target.
* NB: Hadoop does not support fully qualified URIs for the * NB: Hadoop does not support fully qualified URIs for the