diff options
author | Charles-François Natali <neologix@free.fr> | 2011-11-26 10:32:46 (GMT) |
---|---|---|
committer | Charles-François Natali <neologix@free.fr> | 2011-11-26 10:32:46 (GMT) |
commit | 2966f10ec0a75ae62947df08c7a83ba50e766750 (patch) | |
tree | 5c705e621ab3eb2a18338989e018594fd91c6679 /Lib | |
parent | 261a6d7c21c82e00c4a872ab7cabbcd8d419f7db (diff) | |
download | cpython-2966f10ec0a75ae62947df08c7a83ba50e766750.zip cpython-2966f10ec0a75ae62947df08c7a83ba50e766750.tar.gz cpython-2966f10ec0a75ae62947df08c7a83ba50e766750.tar.bz2 |
Issue #13415: Skip test_os.test_unset_error on FreeBSD < 7 and OS X < 10.6
(where unsetenv() doesn't return a value).
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_os.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index ef5f805..79e66fb 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -447,6 +447,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). + @support.requires_freebsd_version(7) + @support.requires_mac_ver(10, 6) def test_unset_error(self): if sys.platform == "win32": # an environment variable is limited to 32,767 characters |