about summary refs log tree commit diff homepage
path: root/test/Feature/CheckForImpliedValue.c.failing
diff options
context:
space:
mode:
authorFrank Busse <bb0xfb@gmail.com>2018-05-17 22:42:25 +0100
committerCristian Cadar <c.cadar@imperial.ac.uk>2018-05-18 13:45:02 +0100
commit33964e5d935f903b2850f6576f93ce229fb00918 (patch)
treec687a794761bb3931ceafb027f1bdd1951e653fb /test/Feature/CheckForImpliedValue.c.failing
parent57ad4f26c68c53f96d14cd2ae047199e8d62c677 (diff)
downloadklee-33964e5d935f903b2850f6576f93ce229fb00918.tar.gz
tests: use names in klee_make_symbolic
Diffstat (limited to 'test/Feature/CheckForImpliedValue.c.failing')
-rw-r--r--test/Feature/CheckForImpliedValue.c.failing4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Feature/CheckForImpliedValue.c.failing b/test/Feature/CheckForImpliedValue.c.failing
index bb643647..0aa50f0b 100644
--- a/test/Feature/CheckForImpliedValue.c.failing
+++ b/test/Feature/CheckForImpliedValue.c.failing
@@ -9,8 +9,8 @@
 int main() {
   unsigned x, y;
   
-  klee_make_symbolic(&x, sizeof x);
-  klee_make_symbolic(&y, sizeof y);
+  klee_make_symbolic(&x, sizeof x, "x");
+  klee_make_symbolic(&y, sizeof y, "y");
 
   if (!x) { // should give x = 0 hit by ivc
     printf("ok\n");