HADOOP-11819. HttpServerFunctionalTest#prepareTestWebapp should create web app directory if it does not exist. (Contributed by Rohith)

(cherry picked from commit b5a0b24643)
This commit is contained in:
Vinayakumar B 2015-04-14 11:58:12 +05:30
parent d77705c980
commit a75679cdb3
2 changed files with 10 additions and 5 deletions

View File

@ -50,6 +50,9 @@ Release 2.8.0 - UNRELEASED
HADOOP-7713. dfs -count -q should label output column (Jonathan Allen
via aw)
HADOOP-11819. HttpServerFunctionalTest#prepareTestWebapp should create web
app directory if it does not exist. (Rohith via vinayakumarb)
OPTIMIZATIONS
HADOOP-11785. Reduce the number of listStatus operation in distcp

View File

@ -123,11 +123,13 @@ protected static void prepareTestWebapp() {
File testWebappDir = new File(webapps +
File.separatorChar + TEST);
try {
if (!testWebappDir.exists()) {
fail("Test webapp dir " + testWebappDir.getCanonicalPath() + " missing");
}
}
catch (IOException e) {
if (!testWebappDir.exists()) {
if (!testWebappDir.mkdirs()) {
fail("Test webapp dir " + testWebappDir.getCanonicalPath()
+ " can not be created");
}
}
} catch (IOException e) {
}
}