about summary refs log tree commit diff homepage
path: root/test
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2016-07-31 18:11:54 +0100
committerGitHub <noreply@github.com>2016-07-31 18:11:54 +0100
commit21749dee2b14b56d4b2d0330046a9007552d577f (patch)
tree39758f99f65880ead77655e66171113208443d80 /test
parent66adc6374cc9b43db2beccec9ae0a547dc411eae (diff)
parent2cdbb892e93c3a6556fc4eb989ccd7cab8bfdb63 (diff)
downloadklee-21749dee2b14b56d4b2d0330046a9007552d577f.tar.gz
Merge pull request #422 from ccadar/div-zero-test
Added test case exposing division by zero failure reported by @kren1 and made division total in STP to fix it.
Diffstat (limited to 'test')
-rw-r--r--test/regression/2016-06-28-div-zero-bug.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/regression/2016-06-28-div-zero-bug.c b/test/regression/2016-06-28-div-zero-bug.c
new file mode 100644
index 00000000..11689aa0
--- /dev/null
+++ b/test/regression/2016-06-28-div-zero-bug.c
@@ -0,0 +1,23 @@
+// RUN: %llvmgcc %s -emit-llvm -g -O0 -c -o %t.bc
+// RUN: rm -rf %t.klee-out
+// RUN: %klee --output-dir=%t.klee-out --use-cex-cache=false %t.bc >%t1.log
+
+// This bug is triggered when using STP up to an including 2.1.0
+// See https://github.com/klee/klee/issues/308
+// and https://github.com/stp/stp/issues/206
+
+int b, a, g;
+
+int *c = &b, *d = &b, *f = &a;
+
+int safe_div(short p1, int p2) { 
+  return p2 == 0 ? p1 : p2; 
+}
+
+int main() {
+  klee_make_symbolic(&b, sizeof b);
+  if (safe_div(*c, 0))
+    *f = (int)&b % *c;
+
+  safe_div(a && g, *d);
+}