summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVedant Kumar <vsk@apple.com>2017-09-13 20:46:26 +0000
committerVedant Kumar <vsk@apple.com>2017-09-13 20:46:26 +0000
commit9b8d2f223ddb502146a82f2711f97f616fddf331 (patch)
treed48ce6efdb1b78d8aacc41dd2b79bcc0062f6cbd
parent1fb9a540cdaf80c43265d4211ca2bab863bbb9c0 (diff)
[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 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@313189 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/ubsan_minimal/lit.common.cfg5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/ubsan_minimal/lit.common.cfg b/test/ubsan_minimal/lit.common.cfg
index e8b42bb82..5fa44c770 100644
--- a/test/ubsan_minimal/lit.common.cfg
+++ b/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)