diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2024-02-17 15:20:54 +0000 |
---|---|---|
committer | MartinNowack <2443641+MartinNowack@users.noreply.github.com> | 2024-02-27 09:45:01 +0000 |
commit | a802c6dfd600f81d6131c055685188e0ac08bb9e (patch) | |
tree | d2a2b0f58387c6ef34e95fa3ba6d3507c9c0934b /test/Feature/SeedConcretizeExternalCall.c | |
parent | 85858749a65f599b88098662de332b6878e6af4c (diff) | |
download | klee-a802c6dfd600f81d6131c055685188e0ac08bb9e.tar.gz |
This commit fixes the concretization of arguments following an external call with symbolic arguments. It also introduces a new external call policy, where the symbolic inputs are left unconstrained following such a call, useful for certain external calls such as printf.
Diffstat (limited to 'test/Feature/SeedConcretizeExternalCall.c')
-rw-r--r-- | test/Feature/SeedConcretizeExternalCall.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/Feature/SeedConcretizeExternalCall.c b/test/Feature/SeedConcretizeExternalCall.c index afc7fb6a..18984170 100644 --- a/test/Feature/SeedConcretizeExternalCall.c +++ b/test/Feature/SeedConcretizeExternalCall.c @@ -24,6 +24,5 @@ int main() { klee_make_symbolic(&x, sizeof(x), "x"); assert(abs(x) == 12345678); - // CHECK-STATS: 0 - // No queries, but this will change once https://github.com/klee/klee/pull/1520 is merged + // CHECK-STATS: 1 } |