forked from OSchip/llvm-project
[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
This commit is contained in:
parent
0969541ffc
commit
69935d86ae
|
@ -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];
|
||||
|
||||
|
|
Loading…
Reference in New Issue