[Python-checkins] cpython (3.2): Issue #13415: Skip test_os.test_unset_error on FreeBSD and OS X.

charles-francois.natali python-checkins at python.org
Sun Nov 27 12:51:35 CET 2011


http://hg.python.org/cpython/rev/bceb6aea8554
changeset:   73768:bceb6aea8554
branch:      3.2
parent:      73766:26275a1c229c
user:        Charles-François Natali <neologix at free.fr>
date:        Sun Nov 27 12:49:27 2011 +0100
summary:
  Issue #13415: Skip test_os.test_unset_error on FreeBSD and OS X.

files:
  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
--- a/Lib/test/test_os.py
+++ b/Lib/test/test_os.py
@@ -423,6 +423,10 @@
         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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list