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 60167dc24b Update hppa libm-test-ulps new 496e36f225 tst: Extend cross-test-ssh.sh to specify if target date can [...] new a156555007 support: Provide xclock_settime test helper function new 3f337843ec tst: Add test for clock_settime new b4effffde8 tst: Add test for clock_adjtime new 4de01867dc tst: Modify tst-clock_adjtime to allow reuse of its code new 39f39cade3 tst: Add test for adjtimex new 6b6a151c77 tst: Add test for ntp_adjtime new 6905404496 tst: Add test for settimeofday new 24eb3be5db NEWS: Add entry for CVE-2021-27645 new 9b456c5da9 nss: fix nss_database_lookup2's alternate handling [BZ #27416] new 36f6e40884 <shlib-compat.h>: Support compat_symbol_reference for _ISOMAC new 178c0e48c3 malloc: Turn tst-mallocstate into a non-internal test new 07db3f5523 math: $(libm-tests-compat) can be regular tests new 779c404de7 math: test-matherr and test-matherr-2 can be regular tests new 8209c5f1f4 posix: tst-glob_lstat_compat no longer needs to be an internal test new 63c317fe31 posix: tst-spawn4-compat can be a regular test new cfaf536723 resolv: tst-p_secstodate can be a regular test new 973323ce69 sunrpc: tst-svc_register can be a regular test new 15e50e6c96 Linux: dirent/tst-readdir64-compat can be a regular test new a6917c82b3 Linux: misc/tst-ofdlocks-compat can be a regular test
The 20 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: INSTALL | 15 ++++ NEWS | 5 +- include/libc-symbols.h | 26 +++--- malloc/Makefile | 10 ++- malloc/tst-mallocstate.c | 11 +-- manual/install.texi | 20 +++++ math/Makefile | 9 ++- math/test-matherr.c | 13 +-- nscd/aicache.c | 4 +- nscd/initgrcache.c | 3 +- nscd/netgroupcache.c | 2 +- nss/Makefile | 1 + nss/Versions | 2 +- nss/XXX-lookup.c | 17 ++-- nss/databases.def | 3 + nss/grp-lookup.c | 1 - nss/hosts-lookup.c | 1 - nss/key-lookup.c | 1 - nss/network-lookup.c | 1 - nss/nss_compat/compat-grp.c | 2 +- nss/nss_compat/compat-initgroups.c | 2 +- nss/nss_compat/compat-pwd.c | 2 +- nss/nss_compat/compat-spwd.c | 3 +- nss/nss_database.c | 38 ++++++++- nss/nss_database.h | 5 +- nss/nss_module.c | 20 ++--- nss/nss_test.h | 7 ++ nss/nss_test1.c | 93 ++++++++++++++++++++++ nss/nsswitch.c | 40 ---------- nss/nsswitch.h | 9 --- nss/pwd-lookup.c | 1 - nss/sgrp-lookup.c | 2 - nss/spwd-lookup.c | 2 - nss/tst-nss-compat1.c | 81 +++++++++++++++++++ nss/tst-nss-compat1.root/etc/group | 1 + nss/tst-nss-compat1.root/etc/nsswitch.conf | 3 + nss/tst-nss-compat1.root/etc/passwd | 3 + nss/tst-nss-compat1.root/etc/shadow | 2 + nss/tst-nss-compat1.root/tst-nss-compat1.script | 1 + posix/Makefile | 15 +++- posix/tst-glob_lstat_compat.c | 19 +---- posix/tst-spawn4-compat.c | 8 -- resolv/Makefile | 4 +- resolv/tst-p_secstodate.c | 12 --- scripts/cross-test-ssh.sh | 25 +++++- sunrpc/Makefile | 3 +- support/Makefile | 1 + nss/pwd-lookup.c => support/xclock_settime.c | 22 +++-- support/xtime.h | 5 ++ sysdeps/posix/getaddrinfo.c | 4 +- sysdeps/unix/sysv/linux/Makefile | 17 +++- .../unix/sysv/linux/tst-adjtimex.c | 10 +-- sysdeps/unix/sysv/linux/tst-clock_adjtime.c | 61 ++++++++++++++ .../unix/sysv/linux/tst-ntp_adjtime.c | 10 +-- sysdeps/unix/sysv/linux/tst-ofdlocks-compat.c | 8 -- sysdeps/unix/sysv/linux/tst-readdir64-compat.c | 5 -- time/Makefile | 3 +- math/test-matherr.c => time/tst-clock_settime.c | 53 +++++------- time/tst-settimeofday.c | 55 +++++++++++++ 59 files changed, 549 insertions(+), 253 deletions(-) create mode 100644 nss/tst-nss-compat1.c create mode 100644 nss/tst-nss-compat1.root/etc/group create mode 100644 nss/tst-nss-compat1.root/etc/nsswitch.conf create mode 100644 nss/tst-nss-compat1.root/etc/passwd create mode 100644 nss/tst-nss-compat1.root/etc/shadow create mode 100644 nss/tst-nss-compat1.root/tst-nss-compat1.script copy nss/pwd-lookup.c => support/xclock_settime.c (58%) copy nss/key-lookup.c => sysdeps/unix/sysv/linux/tst-adjtimex.c (77%) create mode 100644 sysdeps/unix/sysv/linux/tst-clock_adjtime.c copy nss/key-lookup.c => sysdeps/unix/sysv/linux/tst-ntp_adjtime.c (77%) copy math/test-matherr.c => time/tst-clock_settime.c (53%) create mode 100644 time/tst-settimeofday.c