This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk_llvm_tk1/llvm-master-arm-spec2k6-O3 in repository toolchain/ci/glibc.
from ee8d5e33ad realpath: Set errno to ENAMETOOLONG for result larger than P [...] adds e22a4557eb elf: Properly align all PT_LOAD segments [BZ #28676] adds 8c86ba4463 htl: Fix cleaning the reply port adds 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 [...] adds 84d2d0fe20 realpath: Avoid overwriting preexisting error (CVE-2021-3998) adds 8442f0d966 Fix handling of unterminated bracket expressions in fnmatch [...] adds 5b8e7980c5 Linux: Detect user namespace support in io/tst-getcwd-smallbuff
No new revisions were added by this update.
Summary of changes: Makeconfig | 2 + Makerules | 1 + NEWS | 6 + elf/Makefile | 53 +++++ elf/dl-load.c | 9 +- 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 ++ elf/tst-valgrind-smoke.sh | 46 ++++ .../tst-realpath-toolong.c => elf/valgrind-test.c | 46 ++-- htl/pt-alloc.c | 5 +- htl/pt-create.c | 6 +- htl/pt-dealloc.c | 13 +- htl/pt-detach.c | 6 - htl/pt-internal.h | 16 +- htl/pt-join.c | 6 - 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/mach/htl/pt-thread-terminate.c | 26 ++- sysdeps/posix/getcwd.c | 7 + sysdeps/unix/sysv/linux/Makefile | 7 +- sysdeps/unix/sysv/linux/tst-getcwd-smallbuff.c | 259 +++++++++++++++++++++ 34 files changed, 815 insertions(+), 220 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 create mode 100644 elf/tst-valgrind-smoke.sh copy stdlib/tst-realpath-toolong.c => elf/valgrind-test.c (50%) copy stdlib/tst-realpath-toolong.c => posix/tst-fnmatch7.c (54%) create mode 100644 sysdeps/unix/sysv/linux/tst-getcwd-smallbuff.c