summaryrefslogtreecommitdiff
path: root/test/asan/lit.cfg.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/asan/lit.cfg.py')
-rw-r--r--test/asan/lit.cfg.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/asan/lit.cfg.py b/test/asan/lit.cfg.py
index ebf8d4829..afdc92aba 100644
--- a/test/asan/lit.cfg.py
+++ b/test/asan/lit.cfg.py
@@ -197,7 +197,8 @@ if re.search('mthumb', config.target_cflags) is None:
# Turn on leak detection on 64-bit Linux.
leak_detection_linux = (config.host_os == 'Linux') and (not config.android) and (config.target_arch == 'x86_64' or config.target_arch == 'i386')
leak_detection_mac = (config.host_os == 'Darwin') and (config.target_arch == 'x86_64')
-if leak_detection_linux or leak_detection_mac:
+leak_detection_netbsd = (config.host_os == 'NetBSD') and (config.target_arch == 'x86_64')
+if leak_detection_linux or leak_detection_mac or leak_detection_netbsd:
config.available_features.add('leak-detection')
# Set LD_LIBRARY_PATH to pick dynamic runtime up properly.