about summary refs log tree commit diff homepage
path: root/test/Coverage/ReadArgs.c
blob: 620cde1fc083f145e35c1def29054bb5a251bed1 (plain) (blame)
1
2
3
4
5
6
7
8
9
// RUN: %clang %s -emit-llvm %O0opt -c -o %t1.bc
// RUN: rm -rf %t.klee-out
// RUN: echo " --output-dir=%t.klee-out " > %t1.args
// RUN: %klee @%t1.args %t1.bc
// RUN: test -d %t.klee-out

int main() {
  return 0;
}