diff options
Diffstat (limited to 'src/relooper/test_fuzz4.txt')
-rw-r--r-- | src/relooper/test_fuzz4.txt | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/relooper/test_fuzz4.txt b/src/relooper/test_fuzz4.txt new file mode 100644 index 00000000..5bb219f4 --- /dev/null +++ b/src/relooper/test_fuzz4.txt @@ -0,0 +1,20 @@ + + +print('entry'); var label; var state; var decisions = [2, 2, 1, 3, 2, 2, 1, 3, 2, 3, 3, 1, 3, 2, 1]; var index = 0; function check() { if (index == decisions.length) throw 'HALT'; return decisions[index++] } +if (state == 2) { + while(1) { + print(2); state = check(); + } +} else { + while(1) { + print(4); state = check(); + if (!(state == 4)) { + break; + } + } + print(3); state = check(); + while(1) { + print(1); state = check(); + } +} + |