blob: 7ebf056e40cf14e666b7e3b8c7f4b3e26244b7e6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
// RUN: %llvmgcc %s -emit-llvm -O0 -c -o %t1.bc
// RUN: rm -rf xxx
// RUN: echo " --output-dir=xxx " > %t1.args
// RUN: %klee --read-args %t1.args %t1.bc
// RUN: test -d xxx
int main() {
return 0;
}
|