MAPREDUCE-5585. TestCopyCommitter#testNoCommitAction Fails on JDK7 (jeagles)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1532878 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jonathan Turner Eagles 2013-10-16 20:06:53 +00:00
parent 71b1436bcc
commit 85b5e96f10
2 changed files with 5 additions and 0 deletions

View File

@ -54,6 +54,9 @@ Release 2.3.0 - UNRELEASED
org.apache.hadoop.mapred.lib.db (Aleksey Gorshkov, Andrey Klochkov, and org.apache.hadoop.mapred.lib.db (Aleksey Gorshkov, Andrey Klochkov, and
Nathan Roberts via jlowe) Nathan Roberts via jlowe)
MAPREDUCE-5585. TestCopyCommitter#testNoCommitAction Fails on JDK7
(jeagles)
Release 2.2.1 - UNRELEASED Release 2.2.1 - UNRELEASED
INCOMPATIBLE CHANGES INCOMPATIBLE CHANGES

View File

@ -332,6 +332,7 @@ public void testAtomicCommitMissingFinal() {
} finally { } finally {
TestDistCpUtils.delete(fs, workPath); TestDistCpUtils.delete(fs, workPath);
TestDistCpUtils.delete(fs, finalPath); TestDistCpUtils.delete(fs, finalPath);
conf.setBoolean(DistCpConstants.CONF_LABEL_ATOMIC_COPY, false);
} }
} }
@ -373,6 +374,7 @@ public void testAtomicCommitExistingFinal() {
} finally { } finally {
TestDistCpUtils.delete(fs, workPath); TestDistCpUtils.delete(fs, workPath);
TestDistCpUtils.delete(fs, finalPath); TestDistCpUtils.delete(fs, finalPath);
conf.setBoolean(DistCpConstants.CONF_LABEL_ATOMIC_COPY, false);
} }
} }