summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Rytarowski <n54@gmx.com>2019-09-08 17:07:28 +0000
committerKamil Rytarowski <n54@gmx.com>2019-09-08 17:07:28 +0000
commit02d881a6cb82e073eb66c3b1017293cbff0e618c (patch)
tree7963ef181e1ad4d1f87f3542eb285d36a3967e02
parent7564c7007b11f1d6c4f0091c54274cc88e09c312 (diff)
downloadcompiler-rt-02d881a6cb82e073eb66c3b1017293cbff0e618c.tar.gz
Enable LSan tests for NetBSD/i386
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@371338 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/lsan/lit.common.cfg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lsan/lit.common.cfg.py b/test/lsan/lit.common.cfg.py
index 25350ae8d..e1a2c4e08 100644
--- a/test/lsan/lit.common.cfg.py
+++ b/test/lsan/lit.common.cfg.py
@@ -70,7 +70,7 @@ config.substitutions.append( ("%clangxx_lsan ", build_invocation(clang_lsan_cxxf
# LeakSanitizer tests are currently supported on x86-64 Linux, PowerPC64 Linux, arm Linux, mips64 Linux, and x86_64 Darwin.
supported_linux = config.host_os is 'Linux' and config.host_arch in ['x86_64', 'ppc64', 'ppc64le', 'mips64', 'arm', 'armhf', 'armv7l']
supported_darwin = config.host_os is 'Darwin' and config.target_arch is 'x86_64'
-supported_netbsd = config.host_os is 'NetBSD' and config.target_arch is 'x86_64'
+supported_netbsd = config.host_os is 'NetBSD' and config.target_arch in ['x86_64', 'i386']
if not (supported_linux or supported_darwin or supported_netbsd):
config.unsupported = True