[compiler-rt] r313189 - [ubsan-minimal] Temporarily disable x86_64h testing on Darwin

Vedant Kumar via llvm-commits llvm-commits at lists.llvm.org
Wed Sep 13 13:46:26 PDT 2017


Author: vedantk
Date: Wed Sep 13 13:46:26 2017
New Revision: 313189

URL: http://llvm.org/viewvc/llvm-project?rev=313189&view=rev
Log:
[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

Modified:
    compiler-rt/trunk/test/ubsan_minimal/lit.common.cfg

Modified: compiler-rt/trunk/test/ubsan_minimal/lit.common.cfg
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/ubsan_minimal/lit.common.cfg?rev=313189&r1=313188&r2=313189&view=diff
==============================================================================
--- compiler-rt/trunk/test/ubsan_minimal/lit.common.cfg (original)
+++ compiler-rt/trunk/test/ubsan_minimal/lit.common.cfg Wed Sep 13 13:46:26 2017
@@ -37,4 +37,9 @@ if config.host_os not in ['Linux', 'Free
 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)




More information about the llvm-commits mailing list