From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22315 invoked by alias); 25 Jan 2017 15:14:06 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 40415 Received: (qmail 29821 invoked from network); 25 Jan 2017 15:14:06 -0000 X-Qmail-Scanner-Diagnostics: from rcpt-mqugw.biglobe.ne.jp by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.99.2/21882. spamassassin: 3.4.1. Clear:RC:0(133.208.100.2):SA:0(-3.9/5.0):. Processed in 1.222333 secs); 25 Jan 2017 15:14:06 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-3.9 required=5.0 tests=RCVD_IN_DNSWL_LOW, RP_MATCHES_RCVD,SPF_PASS autolearn=unavailable autolearn_force=no version=3.4.1 X-Envelope-From: takimoto-j@kba.biglobe.ne.jp X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | Received-SPF: pass (ns1.primenet.com.au: SPF record at spf01.biglobe.ne.jp designates 133.208.100.2 as permitted sender) X-Biglobe-Sender: From: "Jun T." Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: UTF-8 locales on BSDs do not support collation correctly Message-Id: Date: Wed, 25 Jan 2017 23:27:43 +0900 To: zsh-workers@zsh.org Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\)) X-Mailer: Apple Mail (2.1878.6) X-Biglobe-Spnum: 49298 After the commit: commit 0e33ebc6514c8719513f3f20161274f6af2caffc Author: Mikael Magnusson Date: Tue Jan 24 12:01:57 2017 +0100 posted: Make D07 recognize more spellings of pl_PL.UTF-8 diff --git a/Test/D07multibyte.ztst b/Test/D07multibyte.ztst (snip) - if [[ -n ${$(locale -a 2>/dev/null)[(R)pl_PL.utf8]} ]]; then + if [[ -n ${$(locale -a 2>/dev/null)[(R)pl_PL.(utf8|UTF-8)]} ]]; then the test D07multibyte.ztst fails on macOS and freeBSD. On these OSs (and maybe on other BSDs), the locale pl_PL.UTF-8 exists but it does not support collation correctly (it just uses ASCII collation). Are there any OS which uses UTF-8 (instead of utf8) for locale name and supports the collation correctly?