diff options
author | Ned Deily <nad@acm.org> | 2015-01-05 01:02:30 -0800 |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2015-01-05 01:02:30 -0800 |
commit | 14183208506914ab595cc9bc3917fd2b828bcfd5 (patch) | |
tree | 43feec37a6f5c4ed0e90fb101937ca886330596b /Lib/test/test_httpservers.py | |
parent | d91082c777fb6494a41f85bcf56bbe4ae5ad9d37 (diff) | |
download | cpython-14183208506914ab595cc9bc3917fd2b828bcfd5.tar.gz cpython-14183208506914ab595cc9bc3917fd2b828bcfd5.zip |
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.
Diffstat (limited to 'Lib/test/test_httpservers.py')
-rw-r--r-- | 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 index a31db5b57b8..569341d83b4 100644 --- a/Lib/test/test_httpservers.py +++ b/Lib/test/test_httpservers.py @@ -269,6 +269,7 @@ class SimpleHTTPServerTestCase(BaseTestCase): 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): |