[compiler-rt] r368242 - Add LLD as a requirement for hwasan tests because of change in r368111.
Douglas Yung via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 7 18:08:23 PDT 2019
Author: dyung
Date: Wed Aug 7 18:08:22 2019
New Revision: 368242
URL: http://llvm.org/viewvc/llvm-project?rev=368242&view=rev
Log:
Add LLD as a requirement for hwasan tests because of change in r368111.
Modified:
compiler-rt/trunk/test/hwasan/lit.cfg.py
Modified: compiler-rt/trunk/test/hwasan/lit.cfg.py
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/hwasan/lit.cfg.py?rev=368242&r1=368241&r2=368242&view=diff
==============================================================================
--- compiler-rt/trunk/test/hwasan/lit.cfg.py (original)
+++ compiler-rt/trunk/test/hwasan/lit.cfg.py Wed Aug 7 18:08:22 2019
@@ -37,5 +37,5 @@ config.substitutions.append(('%env_hwasa
# Default test suffixes.
config.suffixes = ['.c', '.cpp']
-if config.host_os not in ['Linux', 'Android']:
+if config.host_os not in ['Linux', 'Android'] or not config.has_lld:
config.unsupported = True
More information about the llvm-commits
mailing list