summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_os.py
diff options
context:
space:
mode:
authorCharles-François Natali <neologix@free.fr>2011-11-27 11:49:27 (GMT)
committerCharles-François Natali <neologix@free.fr>2011-11-27 11:49:27 (GMT)
commit7be8f68d37b82ffd901eb07fee4ed92a5c8955dc (patch)
tree24c86d2806c935922e99b8e4169a7933ffe1be5f /Lib/test/test_os.py
parent6613c18ea2b1e8f4ede20313265c10bcdfebb5be (diff)
downloadcpython-7be8f68d37b82ffd901eb07fee4ed92a5c8955dc.zip
cpython-7be8f68d37b82ffd901eb07fee4ed92a5c8955dc.tar.gz
cpython-7be8f68d37b82ffd901eb07fee4ed92a5c8955dc.tar.bz2
Issue #13415: Skip test_os.test_unset_error on FreeBSD and OS X.
Diffstat (limited to 'Lib/test/test_os.py')
-rw-r--r--Lib/test/test_os.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py
index 876469b..4da1f1d 100644
--- a/Lib/test/test_os.py
+++ b/Lib/test/test_os.py
@@ -423,6 +423,10 @@ class EnvironTests(mapping_tests.BasicTestMappingProtocol):
value_str = value.decode(sys.getfilesystemencoding(), 'surrogateescape')
self.assertEqual(os.environ['bytes'], value_str)
+ # On FreeBSD < 7 and OS X < 10.6, unsetenv() doesn't return a value (issue
+ # #13415).
+ @unittest.skipIf(sys.platform.startswith(('freebsd', 'darwin')),
+ "due to known OS bug: see issue #13415")
def test_unset_error(self):
if sys.platform == "win32":
# an environment variable is limited to 32,767 characters