mirror of https://github.com/python/cpython
Issue #13415: Skip test_os.test_unset_error on FreeBSD and OS X.
This commit is contained in:
parent
6613c18ea2
commit
7be8f68d37
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue