mirror of https://github.com/python/cpython
GH-124108: Skip test_locale.test_strcoll_with_diacritic() on NetBSD (#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.
This commit is contained in:
parent
a9c2bc1634
commit
10de3600a9
|
@ -355,6 +355,8 @@ class TestEnUSCollation(BaseLocalizedTest, TestCollation):
|
||||||
is_emscripten or is_wasi,
|
is_emscripten or is_wasi,
|
||||||
"musl libc issue on Emscripten/WASI, bpo-46390"
|
"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):
|
def test_strcoll_with_diacritic(self):
|
||||||
self.assertLess(locale.strcoll('à', 'b'), 0)
|
self.assertLess(locale.strcoll('à', 'b'), 0)
|
||||||
|
|
||||||
|
@ -364,6 +366,8 @@ class TestEnUSCollation(BaseLocalizedTest, TestCollation):
|
||||||
is_emscripten or is_wasi,
|
is_emscripten or is_wasi,
|
||||||
"musl libc issue on Emscripten/WASI, bpo-46390"
|
"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):
|
def test_strxfrm_with_diacritic(self):
|
||||||
self.assertLess(locale.strxfrm('à'), locale.strxfrm('b'))
|
self.assertLess(locale.strxfrm('à'), locale.strxfrm('b'))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue