Issue #5944: Skip PEP 383 tests on OS X.

This commit is contained in:
Mark Dickinson 2009-05-05 21:34:59 +00:00
parent f172637bc7
commit 70613685ad

View file

@ -700,6 +700,7 @@ if sys.platform != 'win32':
self.assertRaises(OverflowError, os.setregid, 1<<32, 0)
self.assertRaises(OverflowError, os.setregid, 0, 1<<32)
@unittest.skipIf(sys.platform == 'darwin', "tests don't apply to OS X")
class Pep383Tests(unittest.TestCase):
filenames = [b'foo\xf6bar', 'foo\xf6bar'.encode("utf-8")]