From 1a9469b0ed84be32dc264effbe7736a03cb7b608 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Mon, 2 Nov 2015 11:44:42 -0800 Subject: add do-once and while-forever tests --- test/control_flow.cpp | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'test/control_flow.cpp') diff --git a/test/control_flow.cpp b/test/control_flow.cpp index 9536d0504..871e21281 100644 --- a/test/control_flow.cpp +++ b/test/control_flow.cpp @@ -43,5 +43,27 @@ int EMSCRIPTEN_KEEPALIVE check_do_loop(int x) { return x; } +int EMSCRIPTEN_KEEPALIVE check_do_once(int x) { + do { + x *= 2; + if (x > 1000) break; + x--; + if (x > 30) continue; + x++; + } while (0); + return x; +} + +int EMSCRIPTEN_KEEPALIVE check_while_forever(int x) { + while (1) { + x *= 2; + if (x > 1000) break; + x--; + if (x > 30) continue; + x++; + } + return x; +} + } -- cgit v1.2.3