diff options
author | Lukas Zaoral <lzaoral@redhat.com> | 2021-09-13 10:33:09 +0200 |
---|---|---|
committer | MartinNowack <2443641+MartinNowack@users.noreply.github.com> | 2021-10-27 12:06:36 +0100 |
commit | c9aadba9107ad4a6abaa2b2539c47adac2d2b810 (patch) | |
tree | 197260049b119af2121431a3b7e593aaebc89395 /test | |
parent | 46dc29aa60e4a662c18ea7b2bac1c570ea7a728f (diff) | |
download | klee-c9aadba9107ad4a6abaa2b2539c47adac2d2b810.tar.gz |
tools/klee: Warn if module and host target triples differ
... as running a bitcode with a different target triple may result in unexpected crashes or assertion violations.
Diffstat (limited to 'test')
-rw-r--r-- | test/Feature/TargetMismatch.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/Feature/TargetMismatch.c b/test/Feature/TargetMismatch.c new file mode 100644 index 00000000..aae7fda6 --- /dev/null +++ b/test/Feature/TargetMismatch.c @@ -0,0 +1,9 @@ +// REQUIRES: not-darwin +// RUN: %clang %s -m32 -emit-llvm %O0opt -c -o %t1.bc +// RUN: rm -rf %t.klee-out +// RUN: %klee --output-dir=%t.klee-out --exit-on-error > %t2.out 2>&1 || true +// RUN: FileCheck %s -input-file=%t2.out + +// CHECK: KLEE: WARNING: Module and host target triples do not match +// CHECK-NEXT: This may cause unexpected crashes or assertion violations. +int main(void) {} |