From 04646910ca0fc5a4b08d9a6cdc3cd8c8ae5419ee Mon Sep 17 00:00:00 2001 From: Cristian Cadar Date: Thu, 23 Dec 2021 21:37:46 +0000 Subject: Added a test for invocations of klee_make_symbolic with a wrong size to MakeSymbolicAPI.c, and reformatted the file. --- test/Feature/MakeSymbolicAPI.c | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'test') diff --git a/test/Feature/MakeSymbolicAPI.c b/test/Feature/MakeSymbolicAPI.c index b10ea9cf..d5305422 100644 --- a/test/Feature/MakeSymbolicAPI.c +++ b/test/Feature/MakeSymbolicAPI.c @@ -6,24 +6,26 @@ int main() { unsigned a, b, c; - char* p; - const char *invalid_pointer = 0xf; + char *p; + const char *invalid_pointer = (char *)0xf; klee_make_symbolic(&a, sizeof(a), ""); - //CHECK-WRN: KLEE: WARNING: klee_make_symbolic: renamed empty name to "unnamed" + // CHECK-WRN: KLEE: WARNING: klee_make_symbolic: renamed empty name to "unnamed" klee_make_symbolic(&p, sizeof(p), "p"); if (a == 2) klee_make_symbolic(&c, sizeof(c), invalid_pointer); - //CHECK-ERR-DAG: KLEE: ERROR: {{.*}} Invalid string pointer passed to one of the klee_ functions + // CHECK-ERR-DAG: KLEE: ERROR: {{.*}} Invalid string pointer passed to one of the klee_ functions if (a == 3) klee_make_symbolic(&c, sizeof(c), p); - //CHECK-ERR-DAG: KLEE: ERROR: {{.*}} Symbolic string pointer passed to one of the klee_ functions - - klee_make_symbolic(&b, sizeof(b)); - //CHECK-ERR-DAG: KLEE: ERROR: {{.*}} Incorrect number of arguments to klee_make_symbolic(void*, size_t, char*) + // CHECK-ERR-DAG: KLEE: ERROR: {{.*}} Symbolic string pointer passed to one of the klee_ functions + if (a == 4) + klee_make_symbolic(&c, sizeof(c) - 1, "c"); + // CHECK-ERR-DAG: KLEE: ERROR: {{.*}} Wrong size given to klee_make_symbolic + klee_make_symbolic(&b, sizeof(b)); + // CHECK-ERR-DAG: KLEE: ERROR: {{.*}} Incorrect number of arguments to klee_make_symbolic(void*, size_t, char*) } -- cgit 1.4.1