diff options
author | Vedant Kumar <vsk@apple.com> | 2017-09-13 20:46:26 +0000 |
---|---|---|
committer | Vedant Kumar <vsk@apple.com> | 2017-09-13 20:46:26 +0000 |
commit | cb835d3fdbd09707b16a1075624b34204286949c (patch) | |
tree | 28bb67190108ce044b122311230ed6fbfa583a26 | |
parent | 3d9f1c032addbff1c38e56c83b01c3b43c36af6e (diff) | |
download | bcm5719-llvm-cb835d3fdbd09707b16a1075624b34204286949c.tar.gz bcm5719-llvm-cb835d3fdbd09707b16a1075624b34204286949c.zip |
[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
-rw-r--r-- | compiler-rt/test/ubsan_minimal/lit.common.cfg | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/compiler-rt/test/ubsan_minimal/lit.common.cfg b/compiler-rt/test/ubsan_minimal/lit.common.cfg index e8b42bb823c..5fa44c7707c 100644 --- a/compiler-rt/test/ubsan_minimal/lit.common.cfg +++ b/compiler-rt/test/ubsan_minimal/lit.common.cfg @@ -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) |