From: Charles-François Natali Date: Sun, 27 Nov 2011 12:05:14 +0000 (+0100) Subject: Issue #13415: Skip test_os.test_unset_error on FreeBSD and OS X. X-Git-Tag: v2.7.3rc1~272 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=27bc4d07cc22740d46b8fe8dc0497a85d7a6d15e;p=thirdparty%2FPython%2Fcpython.git Issue #13415: Skip test_os.test_unset_error on FreeBSD and OS X. --- diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index eab8f528cbba..eec162130177 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -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