[ubsan-minimal] Temporarily disable x86_64h testing on Darwin

We're seeing strange issues on the public GreenDragon Darwin bots which
we don't understand. x86_64h tests are still being run on pre-Haswell
bots despite the added checks in test/ubsan_minimal/lit.common.cfg,
which were verified on our internal bots.

I'm unable to ssh into the affected public bot, so for now am trying a
more aggressive check which disables all x86_64h testing for
ubsan-minimal on Darwin.

rdar://problem/34409349

llvm-svn: 313189
This commit is contained in:
Vedant Kumar 2017-09-13 20:46:26 +00:00
parent 3d9f1c032a
commit cb835d3fdb
1 changed files with 5 additions and 0 deletions

View File

@ -37,4 +37,9 @@ if config.host_os not in ['Linux', 'FreeBSD', 'NetBSD', 'Darwin']: # TODO: Windo
if '-arch x86_64h' in target_cflags and 'x86_64h' not in config.available_features:
config.unsupported = True
# Temporarily disable all x86_64h testing on Darwin to unblock the public bots,
# while we investigate rdar://problem/34409349
if config.host_os == 'Darwin' and 'x86_64h' in target_cflags:
config.unsupported = True
config.available_features.add('arch=' + config.target_arch)