HADOOP-11796. Skip TestShellBasedIdMapping.testStaticMapUpdate on Windows. Contributed by Xiaoyu Yao.
This commit is contained in:
parent
1e72d98c69
commit
bd77a7c4d9
|
@ -1210,6 +1210,9 @@ Release 2.7.0 - UNRELEASED
|
|||
Ozawa 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
|
||||
|
||||
|
|
|
@ -129,6 +129,7 @@ public class TestShellBasedIdMapping {
|
|||
// Test staticMap refreshing
|
||||
@Test
|
||||
public void testStaticMapUpdate() throws IOException {
|
||||
assumeTrue(!Shell.WINDOWS);
|
||||
File tempStaticMapFile = File.createTempFile("nfs-", ".map");
|
||||
tempStaticMapFile.delete();
|
||||
Configuration conf = new Configuration();
|
||||
|
|
Loading…
Reference in New Issue