about summary refs log tree commit diff homepage
path: root/test/Feature/ubsan_usub_overflow.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Feature/ubsan_usub_overflow.c')
-rw-r--r--test/Feature/ubsan_usub_overflow.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/Feature/ubsan_usub_overflow.c b/test/Feature/ubsan_usub_overflow.c
new file mode 100644
index 00000000..bfd94e3c
--- /dev/null
+++ b/test/Feature/ubsan_usub_overflow.c
@@ -0,0 +1,19 @@
+// RUN: %llvmgcc %s -fsanitize=unsigned-integer-overflow -emit-llvm -g -O0 -c -o %t.bc
+// RUN: %klee %t.bc 2> %t.log
+// RUN: grep -c "overflow on unsigned subtraction" %t.log
+// RUN: grep -c "ubsan_usub_overflow.c:16: overflow" %t.log
+
+#include "klee/klee.h"
+
+int main()
+{
+  unsigned int x;
+  unsigned int y;
+  volatile unsigned int result;
+
+  klee_make_symbolic(&x, sizeof(x), "unsigned sub 1");
+  klee_make_symbolic(&y, sizeof(y), "unsigned sub 2");
+  result = x - y;
+
+  return 0;
+}