about summary refs log tree commit diff homepage
path: root/test/Coverage/ReadArgs.c
blob: 8eae53a1efbcee87e3054843c7df56d1da5eccf9 (plain) (blame)
1
2
3
4
5
6
7
8
9
// RUN: %llvmgcc %s -emit-llvm -O0 -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;
}