blob: b30838d0c817c0fe6cbd1171382c07f460439718 (
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
27
28
29
30
31
|
// RUN: %clang %s -emit-llvm %O0opt -c -o %t.bc
// RUN: rm -rf %t.klee-out
// RUN: %klee --output-dir=%t.klee-out -function-alias=exit:end %t.bc 2>&1 | FileCheck %s
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
// CHECK: KLEE: function-alias: replaced @exit with @end
void start(int x) {
// CHECK: START
printf("START\n");
if (x == 53)
// CHECK: END: status = 1
exit(1);
}
void __attribute__ ((noinline)) end(int status) {
printf("END: status = %d\n", status);
klee_silent_exit(status);
}
int main() {
int x;
klee_make_symbolic(&x, sizeof(x), "x");
start(x);
// CHECK: END: status = 0
end(0);
}
|