aboutsummaryrefslogtreecommitdiff
path: root/src/relooper/test_fuzz1.txt
blob: becbc0d2c5db24741566ba3c8feae23ae7838864 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
print('entry'); var label; var state; var decisions = [4, 1, 7, 2, 6, 6, 8]; var index = 0; function check() { if (index == decisions.length) throw 'HALT'; return decisions[index++] }
print(5); state = check();
print(6); state = check();
if (state == 7) {
 print(7); state = check();
 label = 3;
}
L5: while(1) {
 if (label == 3) {
  label = 0;
  print(2); state = check();
 }
 print(1); state = check();
 while(1) {
  print(3); state = check();
  if (!(state == 8)) {
   continue L5;
  }
  print(8); state = check();
  if (!(state == 4)) {
   label = 3;
   continue L5;
  }
  print(4); state = check();
  if (!(state == 3)) {
   continue L5;
  }
 }
}