about summary refs log tree commit diff homepage
path: root/test
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2023-06-23 22:05:12 +0100
committerMartinNowack <2443641+MartinNowack@users.noreply.github.com>2023-07-12 15:21:56 +0100
commit9cb9fd54846415d0c271cd178d4a9bfe6493ad00 (patch)
treec84895bab9d11fa527168763a68195efbcc6914b /test
parent8ad9f2aaf4e9e51c3f8b5e24aec56dae4e49e983 (diff)
downloadklee-9cb9fd54846415d0c271cd178d4a9bfe6493ad00.tar.gz
Replaced --suppress-external-warnings and --all-external-warnings with --external-call-warnings=none|once-per-function|all.
This eliminates the ambiguity when both of the old options were set.
Added test for the new option.
Diffstat (limited to 'test')
-rw-r--r--test/Feature/ExtCallWarnings.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/Feature/ExtCallWarnings.c b/test/Feature/ExtCallWarnings.c
new file mode 100644
index 00000000..6ee3f371
--- /dev/null
+++ b/test/Feature/ExtCallWarnings.c
@@ -0,0 +1,26 @@
+// RUN: %clang %s -emit-llvm %O0opt -g -c -o %t.bc
+
+// RUN: rm -rf %t.klee-out
+// RUN: %klee --output-dir=%t.klee-out --external-call-warnings=none %t.bc 2>&1 | FileCheck --check-prefix=CHECK-NONE %s
+
+// RUN: rm -rf %t.klee-out
+// RUN: %klee --output-dir=%t.klee-out --external-call-warnings=once-per-function %t.bc 2>&1 | FileCheck --check-prefix=CHECK-ONCE %s
+
+// RUN: rm -rf %t.klee-out
+// RUN: %klee --output-dir=%t.klee-out --external-call-warnings=all %t.bc 2>&1 | FileCheck --check-prefix=CHECK-ALL %s
+
+#include "klee/klee.h"
+#include <stdio.h>
+#include <stdlib.h>
+
+int main() {
+  return abs(-5) + abs(6);
+  // CHECK-NONE-NOT: calling external
+
+  // CHECK-ONCE: calling external
+  // CHECK-ONCE-NOT: calling external
+
+  // CHECK-ALL: calling external
+  // CHECK-ALL: calling external
+  // CHECK-ALL-NOT: calling external
+}