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 Mar 18, 2022
1 parent 82f040b commit 148436c
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 @@ -352,7 +352,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 @@ -382,7 +382,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, "musl libc issue on Emscripten, bpo-46390")
def test_strxfrm_with_diacritic(self):
self.assertLess(locale.strxfrm('à'), locale.strxfrm('b'))
Expand Down
4 changes: 2 additions & 2 deletions Lib/test/test_re.py
Expand Up @@ -1894,7 +1894,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, "musl libc issue on Emscripten, bpo-46390")
def test_locale_caching(self):
# Issue #22410
Expand Down Expand Up @@ -1933,7 +1933,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, "musl libc issue on Emscripten, bpo-46390")
def test_locale_compiled(self):
oldlocale = locale.setlocale(locale.LC_CTYPE)
Expand Down
8 changes: 4 additions & 4 deletions Lib/test/test_socket.py
Expand Up @@ -3541,7 +3541,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 @@ -3553,7 +3553,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 @@ -3567,7 +3567,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 @@ -3582,7 +3582,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 148436c

Please sign in to comment.