about summary refs log tree commit diff homepage
path: root/test/regression/2007-07-30-unflushed-byte.c
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/regression/2007-07-30-unflushed-byte.c
parent57ad4f26c68c53f96d14cd2ae047199e8d62c677 (diff)
downloadklee-33964e5d935f903b2850f6576f93ce229fb00918.tar.gz
tests: use names in klee_make_symbolic
Diffstat (limited to 'test/regression/2007-07-30-unflushed-byte.c')
-rw-r--r--test/regression/2007-07-30-unflushed-byte.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/regression/2007-07-30-unflushed-byte.c b/test/regression/2007-07-30-unflushed-byte.c
index 20f60eef..b9f6b237 100644
--- a/test/regression/2007-07-30-unflushed-byte.c
+++ b/test/regression/2007-07-30-unflushed-byte.c
@@ -7,7 +7,7 @@
 int main() {
   char i, x[3];
 
-  klee_make_symbolic(&i, sizeof i);
+  klee_make_symbolic(&i, sizeof i, "i");
 
   x[0] = i;