about summary refs log tree commit diff homepage
path: root/test/Feature/OneFreeError.c
blob: e83b535a5490c9f83d00e1354b83a89cbd261354 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %llvmgcc %s -g -emit-llvm -O0 -c -o %t1.bc
// RUN: %klee %t1.bc 2>&1 | FileCheck %s
// RUN: test -f %T/klee-last/test000001.ptr.err

int main() {
  int *x = malloc(4);
  free(x);
  // CHECK: OneFreeError.c:10: memory error: out of bound pointer
  // FIXME: Use FileCheck's relative line numbers
  x[0] = 1;
  return 0;
}