summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Fuzzer/test
diff options
context:
space:
mode:
authorMarcos Pividori <mpividori@google.com>2017-01-22 01:58:55 +0000
committerMarcos Pividori <mpividori@google.com>2017-01-22 01:58:55 +0000
commit5bd35b4d3d448ef67810b60fa6543731c2f6dc17 (patch)
treecccb695356cbb61db15a544a3ee0807c0d3949f9 /llvm/lib/Fuzzer/test
parentbbfc8c357c0356db8d3bd4e6d2277248025619ea (diff)
downloadbcm5719-llvm-5bd35b4d3d448ef67810b60fa6543731c2f6dc17.tar.gz
bcm5719-llvm-5bd35b4d3d448ef67810b60fa6543731c2f6dc17.zip
[libFuzzer] Leak Sanitizer is not supported for Windows.
Differential Revision: https://reviews.llvm.org/D28709 llvm-svn: 292745
Diffstat (limited to 'llvm/lib/Fuzzer/test')
-rw-r--r--llvm/lib/Fuzzer/test/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Fuzzer/test/CMakeLists.txt b/llvm/lib/Fuzzer/test/CMakeLists.txt
index 0e7842f1bea..2d1f1786293 100644
--- a/llvm/lib/Fuzzer/test/CMakeLists.txt
+++ b/llvm/lib/Fuzzer/test/CMakeLists.txt
@@ -121,10 +121,10 @@ set(Tests
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()
OpenPOWER on IntegriCloud