[PATCH] D28709: [libFuzzer] Leak Sanitizer is not supported for Windows.
Marcos Pividori via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sat Jan 21 18:10:02 PST 2017
This revision was automatically updated to reflect the committed changes.
Closed by commit rL292745: [libFuzzer] Leak Sanitizer is not supported for Windows. (authored by mpividori).
Changed prior to commit:
https://reviews.llvm.org/D28709?vs=84731&id=85267#toc
Repository:
rL LLVM
https://reviews.llvm.org/D28709
Files:
llvm/trunk/lib/Fuzzer/test/CMakeLists.txt
Index: llvm/trunk/lib/Fuzzer/test/CMakeLists.txt
===================================================================
--- llvm/trunk/lib/Fuzzer/test/CMakeLists.txt
+++ llvm/trunk/lib/Fuzzer/test/CMakeLists.txt
@@ -121,10 +121,10 @@
TraceMallocTest
)
-if(APPLE)
- # LeakSanitizer is not supported on OSX right now
+if(APPLE OR MSVC)
+ # LeakSanitizer is not supported on OSX and Windows right now
set(HAS_LSAN 0)
- message(WARNING "LeakSanitizer is not supported on Apple platforms."
+ message(WARNING "LeakSanitizer is not supported."
" Building and running LibFuzzer LeakSanitizer tests is disabled."
)
else()
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D28709.85267.patch
Type: text/x-patch
Size: 636 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170122/96cf19d1/attachment.bin>
More information about the llvm-commits
mailing list