about summary refs log tree commit diff homepage
path: root/test/DeterministicAllocation/OneOutOfBounds.c
diff options
context:
space:
mode:
authorDaniel Schemmel <daniel@schemmel.net>2022-10-13 14:25:43 +0100
committerFrank Busse <f.busse@imperial.ac.uk>2023-03-16 11:57:59 +0000
commit7e49c161b76c687f5813e81305ca6697a397478a (patch)
tree2c167026517a90e0632c2e9a352d77e2d592fbc3 /test/DeterministicAllocation/OneOutOfBounds.c
parent9d0e072e3b40b720a26265f0d9b2b99f2d3a954e (diff)
downloadklee-7e49c161b76c687f5813e81305ca6697a397478a.tar.gz
Add some system tests for KDAlloc
Diffstat (limited to 'test/DeterministicAllocation/OneOutOfBounds.c')
-rw-r--r--test/DeterministicAllocation/OneOutOfBounds.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/DeterministicAllocation/OneOutOfBounds.c b/test/DeterministicAllocation/OneOutOfBounds.c
new file mode 100644
index 00000000..499ff06b
--- /dev/null
+++ b/test/DeterministicAllocation/OneOutOfBounds.c
@@ -0,0 +1,12 @@
+// RUN: %clang %s -g -emit-llvm %O0opt -c -o %t.bc
+// RUN: rm -rf %t.klee-out
+// RUN: %klee --output-dir=%t.klee-out --kdalloc %t.bc 2>&1 | FileCheck %s
+// RUN: test -f %t.klee-out/test000001.ptr.err
+
+int main() {
+  int *x = malloc(sizeof(int));
+  // CHECK: OneOutOfBounds.c:[[@LINE+1]]: memory error: out of bound pointer
+  x[1] = 1;
+  free(x);
+  return 0;
+}