summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_os.py
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-05-05 21:34:59 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-05-05 21:34:59 (GMT)
commit70613685ad4f22a9a05c3f4417e81b0bc9d05c34 (patch)
tree5fd9bd369612b681e9556187186dff78c67f73e0 /Lib/test/test_os.py
parentf172637bc7198e626fca2937e200170fbac64413 (diff)
downloadcpython-70613685ad4f22a9a05c3f4417e81b0bc9d05c34.zip
cpython-70613685ad4f22a9a05c3f4417e81b0bc9d05c34.tar.gz
cpython-70613685ad4f22a9a05c3f4417e81b0bc9d05c34.tar.bz2
Issue #5944: Skip PEP 383 tests on OS X.
Diffstat (limited to 'Lib/test/test_os.py')
-rw-r--r--Lib/test/test_os.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py
index a380505..014d874 100644
--- a/Lib/test/test_os.py
+++ b/Lib/test/test_os.py
@@ -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")]