Skip to content

Commit

Permalink
Revert "HOTFIX: Disabling failing block manager test"
Browse files Browse the repository at this point in the history
This reverts commit 4c06738.
  • Loading branch information
JoshRosen committed Dec 15, 2014
1 parent 4c06738 commit 86c1944
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,23 +51,23 @@ class WriteAheadLogBackedBlockRDDSuite extends FunSuite with BeforeAndAfterAll {
System.clearProperty("spark.driver.port")
}

ignore("Read data available in block manager and write ahead log") {
test("Read data available in block manager and write ahead log") {
testRDD(5, 5)
}

ignore("Read data available only in block manager, not in write ahead log") {
test("Read data available only in block manager, not in write ahead log") {
testRDD(5, 0)
}

ignore("Read data available only in write ahead log, not in block manager") {
test("Read data available only in write ahead log, not in block manager") {
testRDD(0, 5)
}

ignore("Read data available only in write ahead log, and test storing in block manager") {
test("Read data available only in write ahead log, and test storing in block manager") {
testRDD(0, 5, testStoreInBM = true)
}

ignore("Read data with partially available in block manager, and rest in write ahead log") {
test("Read data with partially available in block manager, and rest in write ahead log") {
testRDD(3, 2)
}

Expand Down

0 comments on commit 86c1944

Please sign in to comment.