Issue #13415: Skip test_os.test_unset_error on FreeBSD and OS X.

This commit is contained in:
Charles-François Natali 2011-11-27 13:05:14 +01:00
parent 93a1175bac
commit 27bc4d07cc
1 changed files with 4 additions and 0 deletions

View File

@ -361,6 +361,10 @@ class EnvironTests(mapping_tests.BasicTestMappingProtocol):
value = popen.read().strip()
self.assertEqual(value, "World")
# 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