about summary refs log tree commit diff homepage
path: root/test/regression/2018-05-05-number-instructions-dumped-states.c
blob: 5f2af61e0d8942a9ccb7871cc0b1fd3031c5df17 (plain) (blame)
1
2
3
4
5
6
7
8
9
// RUN: %llvmgcc %s -emit-llvm -O0 -g -c -o %t1.bc
// RUN: rm -rf %t.klee-out
// RUN: %klee -stop-after-n-instructions=1 --output-dir=%t.klee-out %t1.bc 2>&1 | FileCheck %s

// CHECK: KLEE: done: total instructions = 1

#include "klee/klee.h"

int main(int argc, char * argv[]) {}