Author: Marco Elver Date: 2020-05-28T11:33:32+02:00 New Revision: 69935d86aed1b691c5f33a2141f15cb3aaee1af6
URL: https://github.com/llvm/llvm-project/commit/69935d86aed1b691c5f33a2141f15cb3aaee1af6 DIFF: https://github.com/llvm/llvm-project/commit/69935d86aed1b691c5f33a2141f15cb3aaee1af6.diff LOG: [Clang][Sanitizers] Expect test failure on {arm,thumb}v7 Summary: Versions of LLVM built on {arm,thumb}v7 appear to have differently configured pass managers, which causes restrictions on which sanitizers we may use. As such, expect failure of the recently added "sanitize-coverage.c" test on these architectures until we can investigate armv7's restrictions. Bugzilla: https://bugs.llvm.org/show_bug.cgi?id=46117 Reviewers: vitalybuka, glider Reviewed By: glider Subscribers: glider, kristof.beyls, danielkiss, cfe-commits, vvereschaka Tags: #clang Differential Revision: https://reviews.llvm.org/D80668 Added: Modified: clang/test/CodeGen/sanitize-coverage.c Removed: ################################################################################ diff --git a/clang/test/CodeGen/sanitize-coverage.c b/clang/test/CodeGen/sanitize-coverage.c index 6fc8e39354d4..ea4ac9296b48 100644 --- a/clang/test/CodeGen/sanitize-coverage.c +++ b/clang/test/CodeGen/sanitize-coverage.c @@ -4,6 +4,9 @@ // RUN: %clang %s -target x86_64-unknown-linux-gnu -emit-llvm -S -fsanitize=memory -fsanitize-coverage=trace-pc,trace-cmp -o - | FileCheck %s --check-prefixes=CHECK,MSAN // RUN: %clang %s -target x86_64-unknown-linux-gnu -emit-llvm -S -fsanitize=thread -fsanitize-coverage=trace-pc,trace-cmp -o - | FileCheck %s --check-prefixes=CHECK,TSAN // RUN: %clang %s -target x86_64-unknown-linux-gnu -emit-llvm -S -fsanitize=undefined -fsanitize-coverage=trace-pc,trace-cmp -o - | FileCheck %s --check-prefixes=CHECK,UBSAN +// +// Host armv7 is currently unsupported: https://bugs.llvm.org/show_bug.cgi?id=46117 +// XFAIL: armv7, thumbv7 int x[10]; _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits