[compiler-rt] r344035 - Reflect the current reality and disable lsan tests on NetBSD

Kamil Rytarowski via llvm-commits llvm-commits at lists.llvm.org
Tue Oct 9 03:34:36 PDT 2018


Author: kamil
Date: Tue Oct  9 03:34:36 2018
New Revision: 344035

URL: http://llvm.org/viewvc/llvm-project?rev=344035&view=rev
Log:
Reflect the current reality and disable lsan tests on NetBSD

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

Modified:
    compiler-rt/trunk/test/fuzzer/lit.cfg

Modified: compiler-rt/trunk/test/fuzzer/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/fuzzer/lit.cfg?rev=344035&r1=344034&r2=344035&view=diff
==============================================================================
--- compiler-rt/trunk/test/fuzzer/lit.cfg (original)
+++ compiler-rt/trunk/test/fuzzer/lit.cfg Tue Oct  9 03:34:36 2018
@@ -27,6 +27,7 @@ config.test_format = lit.formats.ShTest(
 # 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:




More information about the llvm-commits mailing list