From: George Karpenkov Date: Wed, 12 Jul 2017 18:14:19 +0000 (+0000) Subject: [libFuzzer] Do not use LLVM ostream in tests X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=053573f613cfddb3fbabffec4c06b3c7749e3b04;p=llvm [libFuzzer] Do not use LLVM ostream in tests Differential Revision: https://reviews.llvm.org/D35312 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@307824 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Fuzzer/test/FuzzerUnittest.cpp b/lib/Fuzzer/test/FuzzerUnittest.cpp index 812894fd947..129519ca5bc 100644 --- a/lib/Fuzzer/test/FuzzerUnittest.cpp +++ b/lib/Fuzzer/test/FuzzerUnittest.cpp @@ -5,6 +5,9 @@ // with ASan) involving C++ standard library types when using libcxx. #define _LIBCPP_HAS_NO_ASAN +// Do not attempt to use LLVM ostream from gtest. +#define GTEST_NO_LLVM_RAW_OSTREAM 1 + #include "FuzzerCorpus.h" #include "FuzzerDictionary.h" #include "FuzzerInternal.h"