Make multi node tests use the within() aware barrier

This commit is contained in:
Björn Antonsson 2012-06-13 14:55:33 +02:00
parent 463e62926e
commit 5714d8327f
25 changed files with 90 additions and 90 deletions

View file

@ -46,12 +46,12 @@ abstract class ConvergenceSpec
// doesn't join immediately
}
testConductor.enter("after-1")
enter("after-1")
}
"not reach convergence while any nodes are unreachable" taggedAs LongRunningTest ignore {
val thirdAddress = node(third).address
testConductor.enter("before-shutdown")
enter("before-shutdown")
runOn(first) {
// kill 'third' node
@ -78,7 +78,7 @@ abstract class ConvergenceSpec
}
}
testConductor.enter("after-2")
enter("after-2")
}
"not move a new joining node to Up while there is no convergence" taggedAs LongRunningTest ignore {
@ -116,7 +116,7 @@ abstract class ConvergenceSpec
}
}
testConductor.enter("after-3")
enter("after-3")
}
}
}