about summary refs log tree commit diff homepage
path: root/test/Coverage/ReplayOutDir.c
blob: ca7e590aa7e1e80bbaa4611d913ca908f44946b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// RUN: %llvmgcc %s -emit-llvm -O0 -c -o %t1.bc
// RUN: rm -rf %t1.out %t1.replay
// RUN: %klee --output-dir=%t1.out %t1.bc
// RUN: %klee --output-dir=%t1.replay --replay-out-dir=%t1.out %t1.bc

int main() {
  int i;
  klee_make_symbolic(&i, sizeof i, "i");
  klee_print_range("i", i);
  return 0;
}