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
47 lines
1.9 KiB
Diff
47 lines
1.9 KiB
Diff
---
|
|
gnulib-tests/test-isnanl.h | 9 +++++++++
|
|
gnulib-tests/test-signbit.c | 10 ++++++++++
|
|
2 files changed, 19 insertions(+)
|
|
|
|
Index: gnulib-tests/test-isnanl.h
|
|
===================================================================
|
|
--- gnulib-tests/test-isnanl.h.orig 2013-12-04 15:53:33.000000000 +0100
|
|
+++ gnulib-tests/test-isnanl.h 2014-01-09 01:26:40.271972672 +0100
|
|
@@ -51,6 +51,15 @@ main ()
|
|
/* A bit pattern that is different from a Quiet NaN. With a bit of luck,
|
|
it's a Signalling NaN. */
|
|
{
|
|
+#if defined __powerpc__ && LDBL_MANT_DIG == 106
|
|
+ /* This is PowerPC "double double", a pair of two doubles. Inf and Nan are
|
|
+ represented as the corresponding 64-bit IEEE values in the first double;
|
|
+ the second is ignored. Manipulate only the first double. */
|
|
+ #undef NWORDS
|
|
+ #define NWORDS \
|
|
+ ((sizeof (double) + sizeof (unsigned int) - 1) / sizeof (unsigned int))
|
|
+#endif
|
|
+
|
|
memory_long_double m;
|
|
m.value = NaNl ();
|
|
# if LDBL_EXPBIT0_BIT > 0
|
|
Index: gnulib-tests/test-signbit.c
|
|
===================================================================
|
|
--- gnulib-tests/test-signbit.c.orig 2013-12-04 15:53:33.000000000 +0100
|
|
+++ gnulib-tests/test-signbit.c 2014-01-09 01:26:40.271972672 +0100
|
|
@@ -151,6 +151,16 @@ test_signbitl ()
|
|
#define NWORDS \
|
|
((sizeof (long double) + sizeof (unsigned int) - 1) / sizeof (unsigned int))
|
|
typedef union { long double value; unsigned int word[NWORDS]; } memory_long_double;
|
|
+
|
|
+#if defined __powerpc__ && LDBL_MANT_DIG == 106
|
|
+ /* This is PowerPC "double double", a pair of two doubles. Inf and Nan are
|
|
+ represented as the corresponding 64-bit IEEE values in the first double;
|
|
+ the second is ignored. Manipulate only the first double. */
|
|
+ #undef NWORDS
|
|
+ #define NWORDS \
|
|
+ ((sizeof (double) + sizeof (unsigned int) - 1) / sizeof (unsigned int))
|
|
+#endif
|
|
+
|
|
memory_long_double m;
|
|
m.value = zerol / zerol;
|
|
# if LDBL_EXPBIT0_BIT > 0
|