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 90c23495b [sanitizer_common] Rewrite more Posix tests to use asserts new b7de60bbc [sanitizer_common] Fix devname_r() return type on !NetBSD new a9b605426 [sanitizer_common] Add tests for more *putc and *getc variants new 7ef6885e3 [sanitizer_common] Add test for popen() new 8b9ea8fbd [sanitizer_common] Add tests for NetBSD funopen*() functions new 1ee32a1d2 [sanitizer_common] Implement popen, popenve, pclose interceptors new 26982292a [sanitizer_common] Implement funopen*() interceptors for NetBSD
The 6 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: .../sanitizer_common_interceptors.inc | 251 ++++++++++++++++++++- .../sanitizer_platform_interceptors.h | 6 + lib/tsan/rtl/tsan_interceptors.cc | 3 +- test/sanitizer_common/TestCases/NetBSD/funopen.cc | 89 ++++++++ test/sanitizer_common/TestCases/NetBSD/funopen2.cc | 110 +++++++++ .../Posix/{fputs_puts.cc => fputc_putc_putchar.cc} | 7 +- .../{fgetc_ungetc_getc.cc => getc_unlocked.cc} | 7 +- test/sanitizer_common/TestCases/Posix/popen.cc | 23 ++ .../{fputs_puts.cc => putc_putchar_unlocked.cc} | 6 +- 9 files changed, 488 insertions(+), 14 deletions(-) create mode 100644 test/sanitizer_common/TestCases/NetBSD/funopen.cc create mode 100644 test/sanitizer_common/TestCases/NetBSD/funopen2.cc copy test/sanitizer_common/TestCases/Posix/{fputs_puts.cc => fputc_putc_putchar.cc} (52%) copy test/sanitizer_common/TestCases/Posix/{fgetc_ungetc_getc.cc => getc_unlocked. [...] create mode 100644 test/sanitizer_common/TestCases/Posix/popen.cc copy test/sanitizer_common/TestCases/Posix/{fputs_puts.cc => putc_putchar_unlocked [...]