summaryrefslogtreecommitdiff
path: root/test/hwasan
diff options
context:
space:
mode:
authorDouglas Yung <douglas.yung@sony.com>2019-08-08 01:08:22 +0000
committerDouglas Yung <douglas.yung@sony.com>2019-08-08 01:08:22 +0000
commitae6271be483e9bd1c627184cb39f2134052e70b2 (patch)
treecea5039166feebb70e83e2eaff2d41aa44b72fdb /test/hwasan
parentcb1c835da3296c7a2dbef04fdb58fbaee49c2497 (diff)
downloadcompiler-rt-ae6271be483e9bd1c627184cb39f2134052e70b2.tar.gz
Add LLD as a requirement for hwasan tests because of change in r368111.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@368242 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/hwasan')
-rw-r--r--test/hwasan/lit.cfg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/hwasan/lit.cfg.py b/test/hwasan/lit.cfg.py
index fb881be5f..06a860d18 100644
--- a/test/hwasan/lit.cfg.py
+++ b/test/hwasan/lit.cfg.py
@@ -37,5 +37,5 @@ config.substitutions.append(('%env_hwasan_opts=',
# 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