HADOOP-16045. Don't run TestDU on Windows. Contributed by Lukas Majercak.
This commit is contained in:
parent
bf08f4abae
commit
35fa3bd685
@ -17,10 +17,12 @@
|
||||
*/
|
||||
package org.apache.hadoop.fs;
|
||||
|
||||
import org.apache.hadoop.util.Shell;
|
||||
import org.junit.After;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
import static org.junit.Assert.*;
|
||||
import static org.junit.Assume.assumeFalse;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
@ -37,6 +39,7 @@ public class TestDU {
|
||||
|
||||
@Before
|
||||
public void setUp() {
|
||||
assumeFalse(Shell.WINDOWS);
|
||||
FileUtil.fullyDelete(DU_DIR);
|
||||
assertTrue(DU_DIR.mkdirs());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user