This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository glibc.
from 52290d8c04 elf: Fix missing include in test case [BZ #27136] new 243339d055 io: Move file timestamps tests out of Linux new cc1b4029fa linux: Add futimes test new 272e71dc36 linux: Add lutimes test new ac43e25195 io: Add basic tests for utimensat new d87214a104 io: Use temporary directory and file for ftwtest-sh new 27561951d6 time: Add getitimer and setitimer basic tests new 96f98cefe0 time: Add gmtime/gmtime_r tests new 63ceeb856a time: Add timegm/timelocal basic tests new 9f2d9c2bc1 time: Add basic timespec_get tests new ef8239f13a time: Add 64 bit tests for getdate / getdate_r new 48ec055ddc posix: Add wait3 tests new 7cb10381a4 misc: syslog: Use bool for connected new ded3cef361 misc: syslog: Assume MSG_NOSIGNAL support (BZ #17144) new 7f3ab33f20 misc: syslog: Use CLOC_EXEC with _PATH_CONSOLE (BZ #17145) new 5ad1a81c8e misc: syslog: Use static const for AF_UNIX address
The 15 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: 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/unix/sysv/linux/Makefile | 2 +- sysdeps/unix/sysv/linux/syslog.c | 4 - 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 ++- 22 files changed, 771 insertions(+), 521 deletions(-) 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%)