This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_cross/gnu-master-arm-build_cross in repository toolchain/ci/glibc.
from bdc12a77b7 linux: sysconf: Use a more explicit maximum_ARG_MAX adds f4596d9540 Remove PR_TAGGED_ADDR_ENABLE from sys/prctl.h adds aecbe50c9d ARC: Update ulps adds d2b997c717 elf: Fix a DTV setup issue [BZ #27136] adds 8f85075a2e elf: Add a DTV setup test [BZ #27136] adds c489c35054 elf: Fix comments and logic in _dl_add_to_slotinfo adds c0669ae1a6 elf: Refactor _dl_update_slotinfo to avoid use after free adds 8f7e09f4db x86_64: Avoid lazy relocation of tlsdesc [BZ #27137] adds ddcacd91cc i386: Avoid lazy relocation of tlsdesc [BZ #27137] adds 55c9f32380 x86_64: Remove lazy tlsdesc relocation related code adds a75a02a696 i386: Remove lazy tlsdesc relocation related code adds 07c245a76b s390: Update ulps adds 52290d8c04 elf: Fix missing include in test case [BZ #27136] adds 243339d055 io: Move file timestamps tests out of Linux adds cc1b4029fa linux: Add futimes test adds 272e71dc36 linux: Add lutimes test adds ac43e25195 io: Add basic tests for utimensat adds d87214a104 io: Use temporary directory and file for ftwtest-sh adds 27561951d6 time: Add getitimer and setitimer basic tests adds 96f98cefe0 time: Add gmtime/gmtime_r tests adds 63ceeb856a time: Add timegm/timelocal basic tests adds 9f2d9c2bc1 time: Add basic timespec_get tests adds ef8239f13a time: Add 64 bit tests for getdate / getdate_r adds 48ec055ddc posix: Add wait3 tests adds 7cb10381a4 misc: syslog: Use bool for connected adds ded3cef361 misc: syslog: Assume MSG_NOSIGNAL support (BZ #17144) adds 7f3ab33f20 misc: syslog: Use CLOC_EXEC with _PATH_CONSOLE (BZ #17145) adds 5ad1a81c8e misc: syslog: Use static const for AF_UNIX address
No new revisions were added by this update.
Summary of changes: elf/Makefile | 10 +- elf/dl-tls.c | 34 +-- elf/tst-tls20.c | 99 +++++++++ elf/tst-tls20mod-bad.c | 2 + io/Makefile | 8 +- io/ftwtest-sh | 242 ++++++++++----------- {sysdeps/unix/sysv/linux => io}/tst-futimens.c | 2 +- .../sysv/linux/tst-utimes.c => io/tst-futimes.c | 15 +- .../sysv/linux/tst-utimes.c => io/tst-lutimes.c | 34 +-- {sysdeps/unix/sysv/linux => io}/tst-utime.c | 2 +- .../sysv/linux => io}/tst-utimensat-skeleton.c | 7 +- io/tst-utimensat.c | 70 ++++++ {sysdeps/unix/sysv/linux => io}/tst-utimes.c | 2 +- misc/syslog.c | 69 ++---- posix/Makefile | 2 +- posix/{tst-wait4.c => tst-wait-skeleton.c} | 24 +- .../sysv/linux/tst-utime.c => posix/tst-wait3.c | 31 +-- posix/tst-wait4.c | 193 +--------------- sysdeps/arc/fpu/libm-test-ulps | 40 ++-- sysdeps/arc/nofpu/libm-test-ulps | 14 +- sysdeps/i386/dl-machine.h | 76 +++---- sysdeps/i386/dl-tlsdesc.S | 156 ------------- sysdeps/i386/dl-tlsdesc.h | 6 +- sysdeps/i386/tlsdesc.c | 231 +------------------- sysdeps/s390/fpu/libm-test-ulps | 6 +- sysdeps/unix/sysv/linux/Makefile | 2 +- sysdeps/unix/sysv/linux/sys/prctl.h | 4 - sysdeps/unix/sysv/linux/syslog.c | 4 - sysdeps/x86_64/dl-machine.h | 23 +- sysdeps/x86_64/dl-tlsdesc.S | 104 --------- sysdeps/x86_64/dl-tlsdesc.h | 4 +- sysdeps/x86_64/tlsdesc.c | 109 +--------- time/Makefile | 3 +- time/tst-getdate.c | 153 +++++++------ time/tst-gmtime.c | 124 +++++++++++ time/tst-itimer.c | 175 +++++++++++++++ time/tst-timegm.c | 95 ++++++++ .../linux/tst-utime.c => time/tst-timespec_get.c | 35 ++- 38 files changed, 972 insertions(+), 1238 deletions(-) create mode 100644 elf/tst-tls20.c create mode 100644 elf/tst-tls20mod-bad.c rename {sysdeps/unix/sysv/linux => io}/tst-futimens.c (96%) copy sysdeps/unix/sysv/linux/tst-utimes.c => io/tst-futimes.c (79%) copy sysdeps/unix/sysv/linux/tst-utimes.c => io/tst-lutimes.c (53%) copy {sysdeps/unix/sysv/linux => io}/tst-utime.c (96%) rename {sysdeps/unix/sysv/linux => io}/tst-utimensat-skeleton.c (92%) create mode 100644 io/tst-utimensat.c rename {sysdeps/unix/sysv/linux => io}/tst-utimes.c (96%) copy posix/{tst-wait4.c => tst-wait-skeleton.c} (88%) copy sysdeps/unix/sysv/linux/tst-utime.c => posix/tst-wait3.c (55%) delete mode 100644 sysdeps/unix/sysv/linux/syslog.c create mode 100644 time/tst-gmtime.c create mode 100644 time/tst-itimer.c create mode 100644 time/tst-timegm.c rename sysdeps/unix/sysv/linux/tst-utime.c => time/tst-timespec_get.c (59%)