about summary refs log tree commit diff homepage
path: root/test/Feature/DumpStatesOnHalt.c
blob: d86b786bbbaa98de4a737b2bb4dafd68602c7053 (plain) (blame)
1
2
3
4
5
6
7
8
// RUN: %llvmgcc %s -g -emit-llvm -O0 -c -o %t1.bc
// RUN: %klee --stop-after-n-instructions=1 --dump-states-on-halt=true %t1.bc
// RUN: test -f klee-last/test000001.ktest

int main() {
  int x = 10;
  return x;
}