@@@ better tests
[mLib] / utils / t / control-test.c
index 28fa4ba..51a9adf 100644 (file)
@@ -83,10 +83,17 @@ int main(void)
   LASTSTEP(6);
 
   STEP(0);
+  for (;;) {
+    AFTER(after1, { STEP(2); break; }) STEP(1);
+    MISSTEP; break;
+  }
+  LASTSTEP(3);
+
+  STEP(0);
   DECL(decl0, int i = 1) STEP(i);
   LASTSTEP(2);
 
-  FOR_FIZZBUZZ(fb, 19, 27) printf("%s\n", fb);
+  FOR_FIZZBUZZ(fb, 19, 32) printf("%s\n", fb);
 
   return (rc);
 }