blob: 2babbe629fc99d684938fce61566fa687a9cdc9f (
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
|
// RUN: %clang %s -emit-llvm %O0opt -c -o %t2.bc
// RUN: rm -rf %t.klee-out
// RUN: %klee --output-dir=%t.klee-out --libc=klee %t2.bc > %t3.log
// RUN: echo "good" > %t3.good
// RUN: diff %t3.log %t3.good
#include "klee/klee.h"
#include <stdio.h>
#include <string.h>
int main() {
char buf[4];
char *s = "foo";
klee_make_symbolic(buf, sizeof buf, "buf");
buf[3] = 0;
if (strcmp(buf, s)==0) {
if (buf[0]=='f' && buf[1]=='o' && buf[2]=='o' && buf[3]==0) {
printf("good\n");
} else {
printf("bad\n");
}
}
return 0;
}
|