summaryrefslogtreecommitdiff
path: root/lld
diff options
context:
space:
mode:
authorMichal Gorny <mgorny@gentoo.org>2019-01-02 19:39:26 +0000
committerMichal Gorny <mgorny@gentoo.org>2019-01-02 19:39:26 +0000
commitfea0d2182d9ca84205948cc1d18d6b536d708d6d (patch)
treec545573c19c5c40136e72f498cbb3aa649f20b2e /lld
parent070d17cb9a3fb5642bd0f06252b5a0330b108624 (diff)
[test] Enable system-linker-elf feature on NetBSD [NFC]
Since NetBSD uses ELF linker, enable the relevant feature. It's not currently used for anything, though.
Diffstat (limited to 'lld')
-rw-r--r--lld/test/lit.cfg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/test/lit.cfg.py b/lld/test/lit.cfg.py
index 7bc966c912f..967cba1e01c 100644
--- a/lld/test/lit.cfg.py
+++ b/lld/test/lit.cfg.py
@@ -56,7 +56,7 @@ if lit_config.useValgrind:
config.target_triple += '-vg'
# Running on ELF based *nix
-if platform.system() in ['FreeBSD', 'Linux']:
+if platform.system() in ['FreeBSD', 'NetBSD', 'Linux']:
config.available_features.add('system-linker-elf')
# Set if host-cxxabi's demangler can handle target's symbols.