aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/scala/async/run/ifelse0/WhileSpec.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-11-22 11:17:22 +0100
committerJason Zaugg <jzaugg@gmail.com>2013-11-22 11:52:32 +0100
commit4fc54635380eca4beb13678f24ba0a8e4d592bec (patch)
treec365f365b294ac16c74c03f38bf0c9f267df3cb4 /src/test/scala/scala/async/run/ifelse0/WhileSpec.scala
parent23f94c257c3d5e8ad345cdcc7c9dae8b214d7c51 (diff)
downloadscala-async-4fc54635380eca4beb13678f24ba0a8e4d592bec.tar.gz
scala-async-4fc54635380eca4beb13678f24ba0a8e4d592bec.tar.bz2
scala-async-4fc54635380eca4beb13678f24ba0a8e4d592bec.zip
Fix crashers in do/while and while(await(..))
The new tree shapes handled for do/while look like: // type checked async({ val b = false; doWhile$1(){ await(()); if (b) doWhile$1() else () }; () }) We had to change ExprBuilder to create states for the if/else that concludes the doWhile body, and also loosen the assertion that the label jump must be the last thing we see. We also have to look for more than just `containsAwait` when deciding whether an `If` needs to be transformed into states; it might also contain a jump to the enclosing label that is on the other side of an `await`, and hence needs to be a state transition instead.
Diffstat (limited to 'src/test/scala/scala/async/run/ifelse0/WhileSpec.scala')
-rw-r--r--src/test/scala/scala/async/run/ifelse0/WhileSpec.scala40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/test/scala/scala/async/run/ifelse0/WhileSpec.scala b/src/test/scala/scala/async/run/ifelse0/WhileSpec.scala
index 4b3c2aa..76e6b1e 100644
--- a/src/test/scala/scala/async/run/ifelse0/WhileSpec.scala
+++ b/src/test/scala/scala/async/run/ifelse0/WhileSpec.scala
@@ -76,4 +76,44 @@ class WhileSpec {
}
result mustBe ()
}
+
+ @Test def doWhile() {
+ import AsyncId._
+ val result = async {
+ var b = 0
+ var x = ""
+ await(do {
+ x += "1"
+ x += await("2")
+ x += "3"
+ b += await(1)
+ } while (b < 2))
+ await(x)
+ }
+ result mustBe "123123"
+ }
+
+ @Test def whileAwaitCondition() {
+ import AsyncId._
+ val result = async {
+ var b = true
+ while(await(b)) {
+ b = false
+ }
+ await(b)
+ }
+ result mustBe false
+ }
+
+ @Test def doWhileAwaitCondition() {
+ import AsyncId._
+ val result = async {
+ var b = true
+ do {
+ b = false
+ } while(await(b))
+ b
+ }
+ result mustBe false
+ }
}