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_tx1/llvm-master-aarch64-spec2k6-O2_LTO in repository toolchain/ci/glibc.
from 6ff3c77149 Increase the test timeout of some string tests adds 2fe64148a8 Allow for unpriviledged nested containers adds dc2cfd6a87 alpha: Remove s_abs implementations adds 7eed708edf x86: Remove fabs{f} implementation adds caee5be74b ia64: Remove fabs implementations adds 1c225a2dd1 sparc: Remove s_abs implementations adds 3ee318c923 Remove -z combreloc and HAVE_Z_COMBRELOC adds 053fe27343 linux: Fix __closefrom_fallback iterates until max int (BZ#28993) adds cbc2c56bab benchtests: Only build libmvec benchmarks iff $(build-mathve [...] adds dfc7bf8a24 test-memcpy: Actually reverse source and destination adds 67e3b0c63c tests/string: Drop simple/stupid/builtin tests
No new revisions were added by this update.
Summary of changes: Makeconfig | 10 +- config.h.in | 3 - config.make.in | 1 - configure | 39 ------ configure.ac | 31 ----- elf/tst-pldd.c | 2 + nptl/tst-pthread-getattr.c | 4 + nss/tst-reload2.c | 2 + string/test-memccpy.c | 18 +-- string/test-memchr.c | 3 +- string/test-memcmp.c | 1 - string/test-memcpy-support.h | 58 ++++----- string/test-memmem.c | 3 +- string/test-memmove.c | 6 +- string/test-mempcpy.c | 4 +- string/test-memrchr.c | 3 +- string/test-memset.c | 42 +----- string/test-strcasecmp.c | 25 +--- string/test-strcasestr.c | 11 +- string/test-strcat.c | 3 +- string/test-strchr.c | 16 +-- string/test-strcmp.c | 1 - string/test-strcpy.c | 4 +- string/test-strlen.c | 2 +- string/test-strncasecmp.c | 25 +--- string/test-strncat.c | 8 +- string/test-strncmp.c | 1 - string/test-strncpy.c | 19 +-- string/test-strnlen.c | 3 +- string/test-strpbrk.c | 21 +-- string/test-strrchr.c | 3 +- string/test-strspn.c | 24 +--- string/test-strstr.c | 15 +-- support/Makefile | 1 + support/support.h | 5 + elf/tst-audit24b.c => support/support_need_proc.c | 26 ++-- support/test-container.c | 141 ++++++++++++++++----- sysdeps/alpha/dl-machine.h | 33 ++--- sysdeps/alpha/fpu/s_fabs.c | 28 ---- sysdeps/alpha/fpu/s_fabsf.c | 27 ---- sysdeps/arm/dl-machine.h | 18 +-- sysdeps/hppa/dl-machine.h | 9 -- sysdeps/i386/dl-machine.h | 20 +-- sysdeps/i386/fpu/s_fabs.S | 10 -- sysdeps/i386/fpu/s_fabsf.S | 10 -- sysdeps/ia64/dl-machine.h | 18 +-- sysdeps/ia64/fpu/s_fabs.S | 82 ------------ sysdeps/ia64/fpu/s_fabsf.S | 82 ------------ sysdeps/riscv/dl-machine.h | 18 +-- sysdeps/s390/s390-32/dl-machine.h | 18 +-- sysdeps/s390/s390-64/dl-machine.h | 18 +-- sysdeps/sparc/sparc32/dl-machine.h | 16 +-- sysdeps/sparc/sparc32/fpu/s_fabs.S | 30 ----- sysdeps/sparc/sparc32/fpu/s_fabsf.S | 28 ---- .../{s_fabs-generic.S => s_fabs-generic.c} | 2 +- .../{s_fabsf-generic.S => s_fabsf-generic.c} | 2 +- sysdeps/sparc/sparc64/dl-machine.h | 16 +-- sysdeps/sparc/sparc64/fpu/s_fabs.c | 7 - sysdeps/sparc/sparc64/fpu/s_fabsf.c | 7 - sysdeps/unix/sysv/linux/closefrom_fallback.c | 11 +- sysdeps/x86_64/dl-machine.h | 18 +-- sysdeps/x86_64/fpu/Makefile | 2 +- sysdeps/x86_64/fpu/s_fabs.c | 27 ---- sysdeps/x86_64/fpu/s_fabsf.c | 27 ---- 64 files changed, 238 insertions(+), 930 deletions(-) copy elf/tst-audit24b.c => support/support_need_proc.c (63%) delete mode 100644 sysdeps/alpha/fpu/s_fabs.c delete mode 100644 sysdeps/alpha/fpu/s_fabsf.c delete mode 100644 sysdeps/i386/fpu/s_fabs.S delete mode 100644 sysdeps/i386/fpu/s_fabsf.S delete mode 100644 sysdeps/ia64/fpu/s_fabs.S delete mode 100644 sysdeps/ia64/fpu/s_fabsf.S delete mode 100644 sysdeps/sparc/sparc32/fpu/s_fabs.S delete mode 100644 sysdeps/sparc/sparc32/fpu/s_fabsf.S rename sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/{s_fabs-generic.S => s_fabs-gen [...] rename sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/{s_fabsf-generic.S => s_fabsf-g [...] delete mode 100644 sysdeps/sparc/sparc64/fpu/s_fabs.c delete mode 100644 sysdeps/sparc/sparc64/fpu/s_fabsf.c delete mode 100644 sysdeps/x86_64/fpu/s_fabs.c delete mode 100644 sysdeps/x86_64/fpu/s_fabsf.c