about summary refs log tree commit diff homepage
path: root/test/Feature/OneOutOfBounds.c
blob: 72d36b7090cb7656c2ba88e773594438b86c26e3 (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(sizeof(int));
  // CHECK: OneOutOfBounds.c:9: memory error: out of bound pointer
  // FIXME: Use FileCheck's relative line numbers
  x[1] = 1;
  free(x);
  return 0;
}