forked from OSchip/llvm-project
[libFuzzer] Do not turn unittest warnings into errors.
Some warnings originating from googletest were causing bots to fail while bulding unit tests. The sanitizers address this issue by not using -Werror. We adopt this approach for libFuzzer. llvm-svn: 335640
This commit is contained in:
parent
0ab788e271
commit
0948bc2086
|
@ -3,7 +3,6 @@ set(LIBFUZZER_UNITTEST_CFLAGS
|
|||
${COMPILER_RT_GTEST_CFLAGS}
|
||||
-I${COMPILER_RT_SOURCE_DIR}/lib/fuzzer
|
||||
-fno-rtti
|
||||
-Werror
|
||||
-O2)
|
||||
|
||||
if (APPLE)
|
||||
|
|
Loading…
Reference in New Issue