From aa244bae1a173d8f978dfabc44fe26c8577207e7 Mon Sep 17 00:00:00 2001 From: Furkan Onder Date: Tue, 17 Sep 2024 02:00:36 +0300 Subject: [PATCH] GH-124108: Skip test_locale.test_strcoll_with_diacritic() on NetBSD (GH-124110) Skip test_strcoll_with_diacritic() and test_strxfrm_with_diacritic() of test_locale on NetBSD due to lack of UTF-8 LC_COLLATE support. (cherry picked from commit 10de3600a908f96d1c43dac85ef867991d54708e) Co-authored-by: Furkan Onder --- Lib/test/test_locale.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Lib/test/test_locale.py b/Lib/test/test_locale.py index b0d7998559759e..cde80a4eb513d2 100644 --- a/Lib/test/test_locale.py +++ b/Lib/test/test_locale.py @@ -353,6 +353,8 @@ def setUp(self): is_emscripten or is_wasi, "musl libc issue on Emscripten/WASI, bpo-46390" ) + @unittest.skipIf(sys.platform.startswith("netbsd"), + "gh-124108: NetBSD doesn't support UTF-8 for LC_COLLATE") def test_strcoll_with_diacritic(self): self.assertLess(locale.strcoll('à', 'b'), 0) @@ -362,6 +364,8 @@ def test_strcoll_with_diacritic(self): is_emscripten or is_wasi, "musl libc issue on Emscripten/WASI, bpo-46390" ) + @unittest.skipIf(sys.platform.startswith("netbsd"), + "gh-124108: NetBSD doesn't support UTF-8 for LC_COLLATE") def test_strxfrm_with_diacritic(self): self.assertLess(locale.strxfrm('à'), locale.strxfrm('b'))