Skip to content

Commit 15d08ee

Browse files
committed
Update BPO number in skip reasons
1 parent e312ae3 commit 15d08ee

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
@@ -328,7 +328,7 @@ def test_strcoll(self):
328328
self.assertRaises(ValueError, locale.strcoll, 'a', 'a\0')
329329

330330
@unittest.skipIf(sys.platform.startswith('sunos'),
331-
'bpo-xxxxx: broken on Solaris')
331+
'bpo-47058: broken on Solaris')
332332
def test_strxfrm(self):
333333
self.assertLess(locale.strxfrm('a'), locale.strxfrm('b'))
334334
# embedded null character
@@ -361,7 +361,7 @@ def test_strcoll_with_diacritic(self):
361361
@unittest.skipIf(sys.platform.startswith('aix'),
362362
'bpo-29972: broken test on AIX')
363363
@unittest.skipIf(sys.platform.startswith('sunos'),
364-
'bpo-xxxxx: broken on Solaris')
364+
'bpo-47058: broken on Solaris')
365365
@unittest.skipIf(
366366
is_emscripten or is_wasi,
367367
"musl libc issue on Emscripten/WASI, bpo-46390"

Lib/test/test_re.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1950,7 +1950,7 @@ def test_bug_20998(self):
19501950
self.assertEqual(re.fullmatch('[a-c]+', 'ABC', re.I).span(), (0, 3))
19511951

19521952
@unittest.skipIf(sys.platform.startswith("sunos"),
1953-
"test doesn't work well on sparc Solaris")
1953+
"test doesn't work on Solaris, bpo-47058")
19541954
@unittest.skipIf(
19551955
is_emscripten or is_wasi,
19561956
"musl libc issue on Emscripten/WASI, bpo-46390"
@@ -1992,7 +1992,7 @@ def check_en_US_utf8(self):
19921992
self.assertIsNone(re.match(b'(?Li)\xe5', b'\xc5'))
19931993

19941994
@unittest.skipIf(sys.platform.startswith("sunos"),
1995-
"test doesn't work well on sparc Solaris")
1995+
"test doesn't work on Solaris, bpo-47058")
19961996
@unittest.skipIf(
19971997
is_emscripten or is_wasi,
19981998
"musl libc issue on Emscripten/WASI, bpo-46390"

Lib/test/test_socket.py

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

36193619
@unittest.skipIf(sys.platform == "darwin", "skipping, see issue #12958")
3620-
@unittest.skipIf(SOLARIS, "skipping, see issue #00000")
3620+
@unittest.skipIf(SOLARIS, "skipping, see issue #47058")
36213621
@unittest.skipIf(AIX, "skipping, see issue #22397")
36223622
@requireAttrs(socket, "CMSG_SPACE")
36233623
def testFDPassSeparate(self):
@@ -3629,7 +3629,7 @@ def testFDPassSeparate(self):
36293629

36303630
@testFDPassSeparate.client_skip
36313631
@unittest.skipIf(sys.platform == "darwin", "skipping, see issue #12958")
3632-
@unittest.skipIf(SOLARIS, "skipping, see issue #00000")
3632+
@unittest.skipIf(SOLARIS, "skipping, see issue #47058")
36333633
@unittest.skipIf(AIX, "skipping, see issue #22397")
36343634
def _testFDPassSeparate(self):
36353635
fd0, fd1 = self.newFDs(2)
@@ -3643,7 +3643,7 @@ def _testFDPassSeparate(self):
36433643
len(MSG))
36443644

36453645
@unittest.skipIf(sys.platform == "darwin", "skipping, see issue #12958")
3646-
@unittest.skipIf(SOLARIS, "skipping, see issue #00000")
3646+
@unittest.skipIf(SOLARIS, "skipping, see issue #47058")
36473647
@unittest.skipIf(AIX, "skipping, see issue #22397")
36483648
@requireAttrs(socket, "CMSG_SPACE")
36493649
def testFDPassSeparateMinSpace(self):
@@ -3658,7 +3658,7 @@ def testFDPassSeparateMinSpace(self):
36583658

36593659
@testFDPassSeparateMinSpace.client_skip
36603660
@unittest.skipIf(sys.platform == "darwin", "skipping, see issue #12958")
3661-
@unittest.skipIf(SOLARIS, "skipping, see issue #00000")
3661+
@unittest.skipIf(SOLARIS, "skipping, see issue #47058")
36623662
@unittest.skipIf(AIX, "skipping, see issue #22397")
36633663
def _testFDPassSeparateMinSpace(self):
36643664
fd0, fd1 = self.newFDs(2)

0 commit comments

Comments
 (0)