Skip to content

Commit c90bdd8

Browse files
committed
Update BPO number in skip reasons
1 parent 063f9f9 commit c90bdd8

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Lib/test/test_locale.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ def test_strcoll(self):
337337
self.assertRaises(ValueError, locale.strcoll, 'a', 'a\0')
338338

339339
@unittest.skipIf(sys.platform.startswith('sunos'),
340-
'bpo-xxxxx: broken on Solaris')
340+
'bpo-47058: broken on Solaris')
341341
def test_strxfrm(self):
342342
self.assertLess(locale.strxfrm('a'), locale.strxfrm('b'))
343343
# embedded null character
@@ -372,7 +372,7 @@ def test_strcoll_with_diacritic(self):
372372
@unittest.skipIf(sys.platform.startswith("netbsd"),
373373
"gh-124108: NetBSD doesn't support UTF-8 for LC_COLLATE")
374374
@unittest.skipIf(sys.platform.startswith('sunos'),
375-
'bpo-xxxxx: broken on Solaris')
375+
'bpo-47058: broken on Solaris')
376376
def test_strxfrm_with_diacritic(self):
377377
self.assertLess(locale.strxfrm('à'), locale.strxfrm('b'))
378378

Lib/test/test_re.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2178,7 +2178,7 @@ def test_bug_20998(self):
21782178

21792179
@unittest.skipIf(linked_to_musl(), "musl libc issue, bpo-46390")
21802180
@unittest.skipIf(sys.platform.startswith("sunos"),
2181-
"test doesn't work well on sparc Solaris")
2181+
"test doesn't work on Solaris, bpo-47058")
21822182
def test_locale_caching(self):
21832183
# Issue #22410
21842184
oldlocale = locale.setlocale(locale.LC_CTYPE)
@@ -2217,7 +2217,7 @@ def check_en_US_utf8(self):
22172217

22182218
@unittest.skipIf(linked_to_musl(), "musl libc issue, bpo-46390")
22192219
@unittest.skipIf(sys.platform.startswith("sunos"),
2220-
"test doesn't work well on sparc Solaris")
2220+
"test doesn't work on Solaris, bpo-47058")
22212221
def test_locale_compiled(self):
22222222
oldlocale = locale.setlocale(locale.LC_CTYPE)
22232223
self.addCleanup(locale.setlocale, locale.LC_CTYPE, oldlocale)

Lib/test/test_socket.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4069,7 +4069,7 @@ def _testFDPassCMSG_LEN(self):
40694069
self.createAndSendFDs(1)
40704070

40714071
@unittest.skipIf(is_apple, "skipping, see issue #12958")
4072-
@unittest.skipIf(SOLARIS, "skipping, see issue #00000")
4072+
@unittest.skipIf(SOLARIS, "skipping, see issue #47058")
40734073
@unittest.skipIf(AIX, "skipping, see issue #22397")
40744074
@requireAttrs(socket, "CMSG_SPACE")
40754075
def testFDPassSeparate(self):
@@ -4081,7 +4081,7 @@ def testFDPassSeparate(self):
40814081

40824082
@testFDPassSeparate.client_skip
40834083
@unittest.skipIf(is_apple, "skipping, see issue #12958")
4084-
@unittest.skipIf(SOLARIS, "skipping, see issue #00000")
4084+
@unittest.skipIf(SOLARIS, "skipping, see issue #47058")
40854085
@unittest.skipIf(AIX, "skipping, see issue #22397")
40864086
def _testFDPassSeparate(self):
40874087
fd0, fd1 = self.newFDs(2)
@@ -4095,7 +4095,7 @@ def _testFDPassSeparate(self):
40954095
len(MSG))
40964096

40974097
@unittest.skipIf(is_apple, "skipping, see issue #12958")
4098-
@unittest.skipIf(SOLARIS, "skipping, see issue #00000")
4098+
@unittest.skipIf(SOLARIS, "skipping, see issue #47058")
40994099
@unittest.skipIf(AIX, "skipping, see issue #22397")
41004100
@requireAttrs(socket, "CMSG_SPACE")
41014101
def testFDPassSeparateMinSpace(self):
@@ -4110,7 +4110,7 @@ def testFDPassSeparateMinSpace(self):
41104110

41114111
@testFDPassSeparateMinSpace.client_skip
41124112
@unittest.skipIf(is_apple, "skipping, see issue #12958")
4113-
@unittest.skipIf(SOLARIS, "skipping, see issue #00000")
4113+
@unittest.skipIf(SOLARIS, "skipping, see issue #47058")
41144114
@unittest.skipIf(AIX, "skipping, see issue #22397")
41154115
def _testFDPassSeparateMinSpace(self):
41164116
fd0, fd1 = self.newFDs(2)

0 commit comments

Comments
 (0)