forked from pool/coreutils
6f150a9022
- Add upstream patch (coreutils-copy-fix-selinux-existing-dirs.patch): cp -a: set the correct SELinux context on already existing destination directories (rh#1045122). - Merge I18n fixes from Fedora (coreutils-i18n.patch): * sort: fix sorting by non-first field (rh#1003544) * cut: avoid using slower multi-byte code in non-UTF-8 locales (rh#1021403, rh#499220). - Testsuite: skip some tests: * coreutils-skip-some-sort-tests-on-ppc.patch: Add patch to skip 2 valgrind'ed sort tests on ppc/ppc64. * coreutils-skip-gnulib-test-tls.patch: Add patch to skip the gnulib test 'test-tls' on i586, x86_64, ppc and ppc64. * coreutils-tests-avoid-FP-cp-cpuinfo.patch: Add patch to skip a test when cp fails for /proc/cpuinfo which happens on aarch64. * coreutils-tests-shorten-extreme-factor-tests.patch: Add patch to skip most of the extreme-expensive factor tests. OBS-URL: https://build.opensuse.org/request/show/213254 OBS-URL: https://build.opensuse.org/package/show/Base:System/coreutils?expand=0&rev=221
38 lines
1.2 KiB
Diff
38 lines
1.2 KiB
Diff
Subject: Skip the gnulib test 'test-tls' on some platforms
|
|
|
|
On i586, x86_64, ppc and ppc64, this test is known to sometimes fail
|
|
with a diagnostic like:
|
|
|
|
Starting test_tls ...*** Error in `./test-tls': free(): invalid pointer: 0x00007f21500008c0 ***
|
|
======= Backtrace: =========
|
|
/lib64/libc.so.6(+0x7406f)[0x7f215845006f]
|
|
/lib64/libc.so.6(+0x7989e)[0x7f215845589e]
|
|
/lib64/libpthread.so.0(+0x7ee2)[0x7f215878fee2]
|
|
/lib64/libpthread.so.0(+0x813e)[0x7f215879013e]
|
|
/lib64/libc.so.6(clone+0x6d)[0x7f21584c3d6d]
|
|
|
|
* gnulib-tests/gnulib.mk (test-tls): Comment to skip for now.
|
|
|
|
---
|
|
gnulib-tests/gnulib.mk | 7 ++++---
|
|
1 file changed, 4 insertions(+), 3 deletions(-)
|
|
|
|
Index: gnulib-tests/gnulib.mk
|
|
===================================================================
|
|
--- gnulib-tests/gnulib.mk.orig 2013-12-04 16:02:24.000000000 +0100
|
|
+++ gnulib-tests/gnulib.mk 2014-01-09 01:28:13.401082108 +0100
|
|
@@ -2303,9 +2303,10 @@ EXTRA_DIST += test-time.c
|
|
|
|
## begin gnulib module tls-tests
|
|
|
|
-TESTS += test-tls
|
|
-check_PROGRAMS += test-tls
|
|
-test_tls_LDADD = $(LDADD) @LIBMULTITHREAD@ @YIELD_LIB@
|
|
+# Fails on i586 and x86_64.
|
|
+#TESTS += test-tls
|
|
+#check_PROGRAMS += test-tls
|
|
+#test_tls_LDADD = $(LDADD) @LIBMULTITHREAD@ @YIELD_LIB@
|
|
|
|
EXTRA_DIST += test-tls.c
|
|
|