about summary refs log tree commit diff homepage
path: root/test/Feature/ubsan_uadd_overflow.c
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2015-02-13 18:45:07 +0000
committerCristian Cadar <c.cadar@imperial.ac.uk>2015-02-13 18:49:49 +0000
commit92c21e2d581bd7405032eaf67544611ccd30ab4e (patch)
treeb58d3755a4321b296ab3fe27c24bbcbd115caa13 /test/Feature/ubsan_uadd_overflow.c
parent714dc22ccb12efdc203e8ce92d6e546ca9ffb157 (diff)
downloadklee-92c21e2d581bd7405032eaf67544611ccd30ab4e.tar.gz
Fixed and refactored overflow test cases.
Diffstat (limited to 'test/Feature/ubsan_uadd_overflow.c')
-rw-r--r--test/Feature/ubsan_uadd_overflow.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/test/Feature/ubsan_uadd_overflow.c b/test/Feature/ubsan_uadd_overflow.c
deleted file mode 100644
index 9dc6832d..00000000
--- a/test/Feature/ubsan_uadd_overflow.c
+++ /dev/null
@@ -1,19 +0,0 @@
-// 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 addition" %t.log
-// RUN: grep -c "ubsan_uadd_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 add 1");
-  klee_make_symbolic(&y, sizeof(y), "unsigned add 2");
-  result = x + y;
-
-  return 0;
-}