Commit 84c2ff1c authored by Pranjal Raihan's avatar Pranjal Raihan Committed by Facebook GitHub Bot

Add FOLLY_DISABLE_MEMORY_SANITIZER to FOLLY_DISABLE_SANITIZERS

Summary: Now we'll ignore all the known sanitizers: ASAN, TSAN, MSAN, UBSAN.

Reviewed By: yfeldblum, jdonald

Differential Revision: D32364717

fbshipit-source-id: f71a294dd9ebaa8521f0487ebc65c6f7c1e7bf04
parent 028a9aba
......@@ -151,9 +151,11 @@
#define FOLLY_DISABLE_UNDEFINED_BEHAVIOR_SANITIZER(...)
#endif // FOLLY_SANITIZE
#define FOLLY_DISABLE_SANITIZERS \
FOLLY_DISABLE_ADDRESS_SANITIZER FOLLY_DISABLE_THREAD_SANITIZER \
FOLLY_DISABLE_UNDEFINED_BEHAVIOR_SANITIZER("undefined")
#define FOLLY_DISABLE_SANITIZERS \
FOLLY_DISABLE_ADDRESS_SANITIZER \
FOLLY_DISABLE_THREAD_SANITIZER \
FOLLY_DISABLE_MEMORY_SANITIZER \
FOLLY_DISABLE_UNDEFINED_BEHAVIOR_SANITIZER("undefined")
/**
* Macro for marking functions as having public visibility.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment