blob: 9be321de06b26a0716f0cedc8f025efb15c8d124 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// RUN: %llvmgcc %s -emit-llvm -g %O0opt -c -o %t.bc
// RUN: rm -rf %t.klee-out
// RUN: %klee --output-dir=%t.klee-out -write-paths %t.bc 2> %t.log
// RUN: cat %t.klee-out/test000001.path | wc -l | grep -q 1
// RUN: cat %t.klee-out/test000002.path | wc -l | grep -q 1
// RUN: cat %t.klee-out/test000003.path | wc -l | grep -q 1
// RUN: cat %t.klee-out/test000004.path | wc -l | grep -q 1
int main(){
int a, b;
klee_make_symbolic (&a, sizeof(int), "a");
klee_make_symbolic (&b, sizeof(int), "b");
klee_assume(a<2);
klee_assume(a>=0);
malloc(a);
if(b){
b++;//do something
}
return b;
}
|