HADOOP-11796. Skip TestShellBasedIdMapping.testStaticMapUpdate on Windows. Contributed by Xiaoyu Yao.
(cherry picked from commitbd77a7c4d9
) (cherry picked from commit6e70611819
)
This commit is contained in:
parent
5021f52f7b
commit
c6ad39e406
|
@ -724,6 +724,9 @@ Release 2.7.0 - UNRELEASED
|
||||||
|
|
||||||
HADOOP-11776. Fixed the broken JDiff support in Hadoop 2. (Li Lu via vinodkv)
|
HADOOP-11776. Fixed the broken JDiff support in Hadoop 2. (Li Lu via vinodkv)
|
||||||
|
|
||||||
|
HADOOP-11796. Skip TestShellBasedIdMapping.testStaticMapUpdate on Windows.
|
||||||
|
(Xiaoyu Yao via cnauroth)
|
||||||
|
|
||||||
Release 2.6.1 - UNRELEASED
|
Release 2.6.1 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -129,6 +129,7 @@ public class TestShellBasedIdMapping {
|
||||||
// Test staticMap refreshing
|
// Test staticMap refreshing
|
||||||
@Test
|
@Test
|
||||||
public void testStaticMapUpdate() throws IOException {
|
public void testStaticMapUpdate() throws IOException {
|
||||||
|
assumeTrue(!Shell.WINDOWS);
|
||||||
File tempStaticMapFile = File.createTempFile("nfs-", ".map");
|
File tempStaticMapFile = File.createTempFile("nfs-", ".map");
|
||||||
tempStaticMapFile.delete();
|
tempStaticMapFile.delete();
|
||||||
Configuration conf = new Configuration();
|
Configuration conf = new Configuration();
|
||||||
|
|
Loading…
Reference in New Issue