~ubuntu-branches/ubuntu/vivid/emscripten/vivid

« back to all changes in this revision

Viewing changes to src/relooper/test_fuzz3.txt

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-09-20 22:44:35 UTC
  • mfrom: (4.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20130920224435-apuwj4fsl3fqv1a6
Tags: 1.5.6~20130920~6010666-1
* New snapshot release
* Update the list of supported architectures to the same as libv8
  (Closes: #723129)
* emlibtool has been removed from upstream.
* Fix warning syntax-error-in-dep5-copyright
* Refresh of the patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
2
 
3
3
print('entry'); var label; var state; var decisions = [3, 3, 4, 1, 2, 1, 2, 4, 4, 4, 2, 3, 3, 1, 2]; var index = 0; function check() { if (index == decisions.length) throw 'HALT'; return decisions[index++] }
 
4
switch (the_var) {
 
5
default: {
 
6
}
 
7
}
4
8
print(1); state = check();
 
9
switch (the_var) {
 
10
default: {
 
11
}
 
12
}
5
13
print(3); state = check();
 
14
switch (the_var) {
 
15
default: {
 
16
}
 
17
}
6
18
while(1) {
7
 
  print(4); state = check();
 
19
 print(4); state = check();
 
20
 switch (the_var) {
 
21
 default: {
 
22
 }
 
23
 }
8
24
}
9
25