[Python-checkins] cpython (3.4): Issue #22165: Skip test_undecodable_filename on OS X prior to 10.5.

ned.deily python-checkins at python.org
Mon Jan 5 10:06:45 CET 2015


https://hg.python.org/cpython/rev/1bc41bbbe02d
changeset:   94026:1bc41bbbe02d
branch:      3.4
parent:      94024:f859a61f5853
user:        Ned Deily <nad at acm.org>
date:        Mon Jan 05 01:02:30 2015 -0800
summary:
  Issue #22165: Skip test_undecodable_filename on OS X prior to 10.5.
10.4 systems do not allow creation of files with such filenames.

files:
  Lib/test/test_httpservers.py |  1 +
  1 files changed, 1 insertions(+), 0 deletions(-)


diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py
--- a/Lib/test/test_httpservers.py
+++ b/Lib/test/test_httpservers.py
@@ -269,6 +269,7 @@
             self.assertEqual(data, body)
         return body
 
+    @support.requires_mac_ver(10, 5)
     @unittest.skipUnless(support.TESTFN_UNDECODABLE,
                          'need support.TESTFN_UNDECODABLE')
     def test_undecodable_filename(self):

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


More information about the Python-checkins mailing list