Преглед на файлове

HDFS-15494. TestReplicaCachingGetSpaceUsed#testReplicaCachingGetSpaceUsedByRBWReplica Fails on Windows. Contributed by Ravuri Sushma sree.

Brahma Reddy Battula преди 4 години
родител
ревизия
0665ce9930

+ 3 - 0
hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/datanode/fsdataset/impl/TestReplicaCachingGetSpaceUsed.java

@@ -43,6 +43,7 @@ import java.util.List;
 import java.util.Set;
 
 import static org.apache.hadoop.fs.CommonConfigurationKeysPublic.FS_DU_INTERVAL_KEY;
+import static org.apache.hadoop.test.PlatformAssumptions.assumeNotWindows;
 import static org.junit.Assert.assertEquals;
 
 /**
@@ -112,6 +113,8 @@ public class TestReplicaCachingGetSpaceUsed {
 
   @Test
   public void testReplicaCachingGetSpaceUsedByRBWReplica() throws Exception {
+ // This test cannot pass on Windows
+    assumeNotWindows();
     FSDataOutputStream os =
         fs.create(new Path("/testReplicaCachingGetSpaceUsedByRBWReplica"));
     byte[] bytes = new byte[20480];