This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository compiler-rt.
from 6702fa4a3 [XRay][compiler-rt] Make unit tests depend on implementation files new 03e114b18 [sanitizer] Move mmap interceptors into sanitizer_common new 4f09499dc [sanitizer] Add interceptors for wcsxfrm, wcsxfrm_l new e6fe6d618 [sanitizer] Move strxfrm interceptors into sanitizer_common new 77712da5b [sanitizer] Extract common code into STRXFRM_INTERCEPTOR_IMPL new 2ccfc5617 [sanitizer] Update symbolizer test
The 5 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: lib/esan/esan_interceptors.cpp | 50 ++------- lib/hwasan/hwasan_interceptors.cc | 41 ++------ lib/msan/msan_interceptors.cc | 77 ++------------ .../sanitizer_common_interceptors.inc | 113 +++++++++++++++++++++ .../sanitizer_platform_interceptors.h | 6 ++ .../symbolizer/scripts/global_symbols.txt | 1 + lib/tsan/rtl/tsan_interceptors.cc | 48 +++------ test/msan/wcsxfrm.cc | 30 ++++++ .../sanitizer_common/TestCases/Linux/mmap64_test.c | 13 +++ test/sanitizer_common/TestCases/Posix/mmap_test.c | 11 ++ test/sanitizer_common/TestCases/Posix/strxfrm.c | 19 ++++ test/sanitizer_common/TestCases/Posix/wcsxfrm.c | 19 ++++ 12 files changed, 257 insertions(+), 171 deletions(-) create mode 100644 test/msan/wcsxfrm.cc create mode 100644 test/sanitizer_common/TestCases/Linux/mmap64_test.c create mode 100644 test/sanitizer_common/TestCases/Posix/mmap_test.c create mode 100644 test/sanitizer_common/TestCases/Posix/strxfrm.c create mode 100644 test/sanitizer_common/TestCases/Posix/wcsxfrm.c