File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -355,6 +355,8 @@ def setUp(self):
355355 is_emscripten or is_wasi ,
356356 "musl libc issue on Emscripten/WASI, bpo-46390"
357357 )
358+ @unittest .skipIf (sys .platform .startswith ("netbsd" ),
359+ "gh-124108: NetBSD doesn't support UTF-8 for LC_COLLATE" )
358360 def test_strcoll_with_diacritic (self ):
359361 self .assertLess (locale .strcoll ('à' , 'b' ), 0 )
360362
@@ -364,6 +366,8 @@ def test_strcoll_with_diacritic(self):
364366 is_emscripten or is_wasi ,
365367 "musl libc issue on Emscripten/WASI, bpo-46390"
366368 )
369+ @unittest .skipIf (sys .platform .startswith ("netbsd" ),
370+ "gh-124108: NetBSD doesn't support UTF-8 for LC_COLLATE" )
367371 def test_strxfrm_with_diacritic (self ):
368372 self .assertLess (locale .strxfrm ('à' ), locale .strxfrm ('b' ))
369373
You can’t perform that action at this time.
0 commit comments