Reflect the current reality and disable lsan tests on NetBSD

LSan/NetBSD is still in development (Stop-The-World routine missed).

llvm-svn: 344035
This commit is contained in:
Kamil Rytarowski 2018-10-09 10:34:36 +00:00
parent f58fe87743
commit a4be178def
1 changed files with 1 additions and 0 deletions

View File

@ -27,6 +27,7 @@ config.test_format = lit.formats.ShTest(execute_external)
# LeakSanitizer is not supported on OSX or Windows right now.
if (sys.platform.startswith('darwin') or
sys.platform.startswith('freebsd') or
sys.platform.startswith('netbsd') or
sys.platform.startswith('win')):
lit_config.note('lsan feature unavailable')
else: