diff options
author | Kamil Rytarowski <n54@gmx.com> | 2019-09-08 17:07:28 +0000 |
---|---|---|
committer | Kamil Rytarowski <n54@gmx.com> | 2019-09-08 17:07:28 +0000 |
commit | def6ca8b330fc256e36cc8d08de78ac9b92d9165 (patch) | |
tree | e940a76371c2859a7c9ad8d21c8bcdccc698e73d | |
parent | 90d2be0163e8f84dfc0b73128d873ac8d84c10f8 (diff) | |
download | bcm5719-llvm-def6ca8b330fc256e36cc8d08de78ac9b92d9165.tar.gz bcm5719-llvm-def6ca8b330fc256e36cc8d08de78ac9b92d9165.zip |
Enable LSan tests for NetBSD/i386
llvm-svn: 371338
-rw-r--r-- | compiler-rt/test/lsan/lit.common.cfg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/test/lsan/lit.common.cfg.py b/compiler-rt/test/lsan/lit.common.cfg.py index 25350ae8df3..e1a2c4e0877 100644 --- a/compiler-rt/test/lsan/lit.common.cfg.py +++ b/compiler-rt/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 |