This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_native_build/master-arm in repository toolchain/ci/glibc.
from 6c2f050dbe Add valgrind smoke test adds 23e0e8f5f1 getcwd: Set errno to ERANGE for size == 1 (CVE-2021-3999) adds 976db046bc tst-realpath-toolong: Fix hurd build adds 114d07fd9a Add and use link-test-modules-rpath-link [BZ #28455] adds b5237c0746 elf: Add a test for PT_LOAD segments with mixed p_align [BZ #28676] adds e4c9268d15 elf: Add a test for PT_LOAD segments with p_align == 1 [BZ #28688] adds d8d94863ef elf: Add a test for PT_LOAD segments with invalid p_align [B [...] new 84d2d0fe20 realpath: Avoid overwriting preexisting error (CVE-2021-3998) new 8442f0d966 Fix handling of unterminated bracket expressions in fnmatch [...] new 5b8e7980c5 Linux: Detect user namespace support in io/tst-getcwd-smallbuff
The 3 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: Makeconfig | 2 + Makerules | 1 + NEWS | 6 + elf/Makefile | 46 ++++ elf/tst-elf-edit.h | 126 ++++++++++ stdlib/tst-realpath-toolong.c => elf/tst-global2.c | 35 +-- elf/tst-globalmod2.c | 41 ++++ elf/tst-p_align.h | 20 ++ .../tst-realpath-toolong.c => elf/tst-p_align1.c | 32 +-- .../tst-realpath-toolong.c => elf/tst-p_align2.c | 32 +-- .../tst-realpath-toolong.c => elf/tst-p_align3.c | 32 +-- elf/tst-p_align3.sh | 27 +++ .../tst-p_alignmod-base.c | 44 ++-- elf/tst-p_alignmod1-edit.c | 27 +++ elf/tst-p_alignmod2-edit.c | 27 +++ elf/tst-p_alignmod3.c | 25 ++ posix/Makefile | 2 +- posix/fnmatch_loop.c | 9 +- .../tst-realpath-toolong.c => posix/tst-fnmatch7.c | 36 +-- stdlib/canonicalize.c | 2 +- stdlib/tst-realpath-toolong.c | 4 + sysdeps/posix/getcwd.c | 7 + sysdeps/unix/sysv/linux/Makefile | 7 +- sysdeps/unix/sysv/linux/tst-getcwd-smallbuff.c | 259 +++++++++++++++++++++ 24 files changed, 687 insertions(+), 162 deletions(-) create mode 100644 elf/tst-elf-edit.h copy stdlib/tst-realpath-toolong.c => elf/tst-global2.c (51%) create mode 100644 elf/tst-globalmod2.c create mode 100644 elf/tst-p_align.h copy stdlib/tst-realpath-toolong.c => elf/tst-p_align1.c (51%) copy stdlib/tst-realpath-toolong.c => elf/tst-p_align2.c (51%) copy stdlib/tst-realpath-toolong.c => elf/tst-p_align3.c (51%) create mode 100755 elf/tst-p_align3.sh copy stdlib/tst-realpath-toolong.c => elf/tst-p_alignmod-base.c (51%) create mode 100644 elf/tst-p_alignmod1-edit.c create mode 100644 elf/tst-p_alignmod2-edit.c create mode 100644 elf/tst-p_alignmod3.c copy stdlib/tst-realpath-toolong.c => posix/tst-fnmatch7.c (54%) create mode 100644 sysdeps/unix/sysv/linux/tst-getcwd-smallbuff.c