Skip to content

Commit

Permalink
Update BPO number in skip reasons
Browse files Browse the repository at this point in the history
  • Loading branch information
kulikjak committed Aug 23, 2022
1 parent e312ae3 commit 15d08ee
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Lib/test/test_locale.py
Expand Up @@ -328,7 +328,7 @@ def test_strcoll(self):
self.assertRaises(ValueError, locale.strcoll, 'a', 'a\0')

@unittest.skipIf(sys.platform.startswith('sunos'),
'bpo-xxxxx: broken on Solaris')
'bpo-47058: broken on Solaris')
def test_strxfrm(self):
self.assertLess(locale.strxfrm('a'), locale.strxfrm('b'))
# embedded null character
Expand Down Expand Up @@ -361,7 +361,7 @@ def test_strcoll_with_diacritic(self):
@unittest.skipIf(sys.platform.startswith('aix'),
'bpo-29972: broken test on AIX')
@unittest.skipIf(sys.platform.startswith('sunos'),
'bpo-xxxxx: broken on Solaris')
'bpo-47058: broken on Solaris')
@unittest.skipIf(
is_emscripten or is_wasi,
"musl libc issue on Emscripten/WASI, bpo-46390"
Expand Down
4 changes: 2 additions & 2 deletions Lib/test/test_re.py
Expand Up @@ -1950,7 +1950,7 @@ def test_bug_20998(self):
self.assertEqual(re.fullmatch('[a-c]+', 'ABC', re.I).span(), (0, 3))

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

@unittest.skipIf(sys.platform.startswith("sunos"),
"test doesn't work well on sparc Solaris")
"test doesn't work on Solaris, bpo-47058")
@unittest.skipIf(
is_emscripten or is_wasi,
"musl libc issue on Emscripten/WASI, bpo-46390"
Expand Down
8 changes: 4 additions & 4 deletions Lib/test/test_socket.py
Expand Up @@ -3617,7 +3617,7 @@ def _testFDPassCMSG_LEN(self):
self.createAndSendFDs(1)

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

@testFDPassSeparate.client_skip
@unittest.skipIf(sys.platform == "darwin", "skipping, see issue #12958")
@unittest.skipIf(SOLARIS, "skipping, see issue #00000")
@unittest.skipIf(SOLARIS, "skipping, see issue #47058")
@unittest.skipIf(AIX, "skipping, see issue #22397")
def _testFDPassSeparate(self):
fd0, fd1 = self.newFDs(2)
Expand All @@ -3643,7 +3643,7 @@ def _testFDPassSeparate(self):
len(MSG))

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

@testFDPassSeparateMinSpace.client_skip
@unittest.skipIf(sys.platform == "darwin", "skipping, see issue #12958")
@unittest.skipIf(SOLARIS, "skipping, see issue #00000")
@unittest.skipIf(SOLARIS, "skipping, see issue #47058")
@unittest.skipIf(AIX, "skipping, see issue #22397")
def _testFDPassSeparateMinSpace(self):
fd0, fd1 = self.newFDs(2)
Expand Down

0 comments on commit 15d08ee

Please sign in to comment.