about summary refs log tree commit diff homepage
path: root/test/Coverage/ReplayOutDir.c
blob: 3ca6fb8044d1e93493aef9abdc2251b8b77bbaa9 (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);
  klee_print_range("i", i);
  return 0;
}