aboutsummaryrefslogtreecommitdiff
path: root/src/relooper/test_fuzz2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/relooper/test_fuzz2.cpp')
-rw-r--r--src/relooper/test_fuzz2.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/relooper/test_fuzz2.cpp b/src/relooper/test_fuzz2.cpp
index 00375340..8a66b113 100644
--- a/src/relooper/test_fuzz2.cpp
+++ b/src/relooper/test_fuzz2.cpp
@@ -8,10 +8,10 @@ int main() {
char *buffer = (char*)malloc(SIZE);
Relooper::SetOutputBuffer(buffer, SIZE);
- Block *b0 = new Block("print('entry'); var label; var state; var decisions = [4, 1, 4, 3, 4, 1, 2, 5, 1, 3, 5, 5, 1, 5, 2, 4, 4, 3]; var index = 0; function check() { if (index == decisions.length) throw 'HALT'; return decisions[index++] }");
- Block *b1 = new Block("print(1); state = check();");
- Block *b2 = new Block("print(2); state = check();");
- Block *b3 = new Block("print(3); state = check();");
+ Block *b0 = new Block("print('entry'); var label; var state; var decisions = [4, 1, 4, 3, 4, 1, 2, 5, 1, 3, 5, 5, 1, 5, 2, 4, 4, 3]; var index = 0; function check() { if (index == decisions.length) throw 'HALT'; return decisions[index++] }", "the_var");
+ Block *b1 = new Block("print(1); state = check();", "the_var");
+ Block *b2 = new Block("print(2); state = check();", "the_var");
+ Block *b3 = new Block("print(3); state = check();", "the_var");
b0->AddBranchTo(b1, "state == 1");
b0->AddBranchTo(b3, NULL);
b1->AddBranchTo(b1, NULL);