diff --git a/streaming/src/test/scala/org/apache/spark/streaming/rdd/WriteAheadLogBackedBlockRDDSuite.scala b/streaming/src/test/scala/org/apache/spark/streaming/rdd/WriteAheadLogBackedBlockRDDSuite.scala
index d2b983c4b4d1a3a48ca217cb6eca34152bfa6d31..728e7f0afad5831731726ee00d1fde9c9699b8cd 100644
--- a/streaming/src/test/scala/org/apache/spark/streaming/rdd/WriteAheadLogBackedBlockRDDSuite.scala
+++ b/streaming/src/test/scala/org/apache/spark/streaming/rdd/WriteAheadLogBackedBlockRDDSuite.scala
@@ -51,23 +51,23 @@ class WriteAheadLogBackedBlockRDDSuite extends FunSuite with BeforeAndAfterAll {
     System.clearProperty("spark.driver.port")
   }
 
-  test("Read data available in block manager and write ahead log") {
+  ignore("Read data available in block manager and write ahead log") {
     testRDD(5, 5)
   }
 
-  test("Read data available only in block manager, not in write ahead log") {
+  ignore("Read data available only in block manager, not in write ahead log") {
     testRDD(5, 0)
   }
 
-  test("Read data available only in write ahead log, not in block manager") {
+  ignore("Read data available only in write ahead log, not in block manager") {
     testRDD(0, 5)
   }
 
-  test("Read data available only in write ahead log, and test storing in block manager") {
+  ignore("Read data available only in write ahead log, and test storing in block manager") {
     testRDD(0, 5, testStoreInBM = true)
   }
 
-  test("Read data with partially available in block manager, and rest in write ahead log") {
+  ignore("Read data with partially available in block manager, and rest in write ahead log") {
     testRDD(3, 2)
   }