blob: 76ae319dcd2abfd9acc8e26114e86e4b2106f10d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// This test checks that under using the over-approximate external call policy, the symbolic arguments are left unconstrained by the external call
// RUN: %clang %s -emit-llvm %O0opt -g -c -o %t.bc
// RUN: rm -rf %t.klee-out
// RUN: %klee --output-dir=%t.klee-out --external-calls=over-approx %t.bc 2>&1 | FileCheck %s
#include "klee/klee.h"
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
int main() {
int x;
klee_make_symbolic(&x, sizeof(x), "x");
printf("%d\n", x);
// CHECK: calling external: printf
if (x > 0) {
printf("Yes\n");
// CHECK-DAG: Yes
} else {
printf("No\n");
// CHECK-DAG: No
}
}
|