GNU bug report logs -
#77509
1 failure with "make check"
Previous Next
To reply to this bug, email your comments to 77509 AT debbugs.gnu.org.
There is no need to reopen the bug first.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
bug-coreutils <at> gnu.org
:
bug#77509
; Package
coreutils
.
(Thu, 03 Apr 2025 21:39:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Derek Clegg <derek <at> me.com>
:
New bug report received and forwarded. Copy sent to
bug-coreutils <at> gnu.org
.
(Thu, 03 Apr 2025 21:39:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
“make check” failure:
============================================================================
Testsuite summary for GNU coreutils 9.6
============================================================================
# TOTAL: 657
# PASS: 483
# SKIP: 173
# XFAIL: 0
# FAIL: 1
# XPASS: 0
# ERROR: 0
============================================================================
See ./tests/test-suite.log
Please report to bug-coreutils <at> gnu.org
============================================================================
uname -m = arm64
uname -r = 24.4.0
uname -s = Darwin
uname -v = Darwin Kernel Version 24.4.0: Wed Mar 19 21:17:37 PDT 2025; root:xnu\
-11417.101.15~1/RELEASE_ARM64_T6031
[test-suite.log.gz (application/x-gzip, attachment)]
[Message part 3 (text/plain, inline)]
Reply sent
to
Pádraig Brady <P <at> draigBrady.com>
:
You have taken responsibility.
(Fri, 04 Apr 2025 11:05:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
Derek Clegg <derek <at> me.com>
:
bug acknowledged by developer.
(Fri, 04 Apr 2025 11:05:02 GMT)
Full text and
rfc822 format available.
Message #10 received at 77509-done <at> debbugs.gnu.org (full text, mbox):
On 03/04/2025 22:38, Derek Clegg via GNU coreutils Bug Reports wrote:
> “make check” failure:
>
> ============================================================================
> Testsuite summary for GNU coreutils 9.6
> ============================================================================
> # TOTAL: 657
> # PASS: 483
> # SKIP: 173
> # XFAIL: 0
> # FAIL: 1
> # XPASS: 0
> # ERROR: 0
> ============================================================================
> See ./tests/test-suite.log
> Please report to bug-coreutils <at> gnu.org
> ============================================================================
>
>
> uname -m = arm64
> uname -r = 24.4.0
> uname -s = Darwin
> uname -v = Darwin Kernel Version 24.4.0: Wed Mar 19 21:17:37 PDT 2025; root:xnu\
> -11417.101.15~1/RELEASE_ARM64_T6031
locale sv_SE seems to be defaulting to UTF-8 on macOS 18.
sort(1) doesn't support such multi-byte thousands separators,
which the following should avoid.
Marking this as done.
thanks,
Padraig.
commit 9ed5770b5e86bd765c607bc9375f0db78acf4687 (HEAD -> master)
Author: Pádraig Brady <P <at> draigBrady.com>
Date: Fri Apr 4 11:53:10 2025 +0100
tests: fix false failure with multi-byte thousands separators
* tests/sort/sort-h-thousands-sep.sh: sv_SE defaults to UTF-8
on macOS 18, so avoid the test for multi-byte separators.
Fixes https://bugs.gnu.org/77509
diff --git a/tests/sort/sort-h-thousands-sep.sh b/tests/sort/sort-h-thousands-s>
index 4be960394..11d1cc475 100755
--- a/tests/sort/sort-h-thousands-sep.sh
+++ b/tests/sort/sort-h-thousands-sep.sh
@@ -25,6 +25,9 @@ lg="$(LC_ALL="$TEST_LOCALE" locale thousands_sep)"
test "$lg" ||
skip_ 'The Swedish locale with blank thousands separator is unavailable.'
+test $(printf '%s' "$lg" | wc -c) = 1 ||
+ skip_ 'Multi-byte thousands separators are not supported'
+
tee exp1 exp3 > in << _EOF_
1 1k 1 M 4${lg}003 1M
2k 2M 2 k 4${lg}002 2
This bug report was last modified today.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.