Skip to content

Commit

Permalink
Test case adjustment.
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonycanino1 committed Jan 20, 2020
1 parent cb48cdb commit 4a05f33
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ex2/test/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.PRECIOUS: %.ll %.instrumented.ll

TARGETS=simple0 simple1 branch0 branch1 branch2 infeasable
TARGETS=simple0 simple1 simple2 branch0 branch1 branch2 infeasable

all: ${TARGETS}

Expand Down
4 changes: 2 additions & 2 deletions ex2/test/simple0.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#include "../include/Runtime.h"

int main() {
int x; DSE_Input(x);
x = x + 1;
int x = 1;
int y = x;
return 0;
}
3 changes: 1 addition & 2 deletions ex2/test/simple1.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

int main() {
int x; DSE_Input(x);
int y; DSE_Input(y);
int z = x / y;
int y = x;
return 0;
}
9 changes: 9 additions & 0 deletions ex2/test/simple2.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#include <stdio.h>

#include "../include/Runtime.h"

int main() {
int x; DSE_Input(x);
int y = x;
return 0;
}

0 comments on commit 4a05f33

Please sign in to comment.