[compiler-rt] [sanitizer] Clean buildbot failures for aarch64

Currently aarch64 lacks instrumentation support for variadic arguments
for MSan.  This patch sets the UBSan tests that uses it as to require
stable-runtime and sets aarch64/ubsan as an unstable one.

llvm-svn: 247996
This commit is contained in:
Adhemerval Zanella
2015-09-18 15:48:32 +00:00
parent 8c39e6aee8
commit dab7043d89
2 changed files with 3 additions and 3 deletions

View File

@@ -8,8 +8,8 @@
// RUN: not %run %t 0f 2>&1 | FileCheck %s --check-prefix=FUNC
// RUN: not %run %t 0v 2>&1 | FileCheck %s --check-prefix=VARIADIC
//
// AArch64 lacks var args instrumentation.
// XFAIL: aarch64
// AArch64 lacks variadic instrumentation for MSAN.
// REQUIRES: stable-runtime
class C {
int *null_;

View File

@@ -75,5 +75,5 @@ if config.host_os == 'Windows':
# Allow tests to use REQUIRES=stable-runtime. For use when you cannot use XFAIL
# because the test hangs or fails on one configuration and not the other.
if config.target_arch.startswith('arm') == False:
if config.target_arch.startswith('arm') == False and config.target_arch != 'aarch64':
config.available_features.add('stable-runtime')