]> granicus.if.org Git - python/commitdiff
Disable test_undecodable_code() of test_sys on Windows
authorVictor Stinner <victor.stinner@haypocalc.com>
Wed, 25 Aug 2010 00:20:27 +0000 (00:20 +0000)
committerVictor Stinner <victor.stinner@haypocalc.com>
Wed, 25 Aug 2010 00:20:27 +0000 (00:20 +0000)
This test is irrevelant on Windows

Lib/test/test_sys.py

index dcd36bee31c764d623fe9001e8f88b0fcd5a47ef..ee8df4d6802def7e3803d1b72840890dff75d82a 100644 (file)
@@ -495,6 +495,12 @@ class SysModuleTest(unittest.TestCase):
 
         self.assertRaises(TypeError, sys.intern, S("abc"))
 
+    # On Windows, pass bytes to subprocess doesn't test how Python decodes the
+    # command line, but how subprocess does decode bytes to unicode. Python
+    # doesn't decode the command line because Windows provides directly the
+    # arguments as unicode (using wmain() instead of main()).
+    @unittest.skipIf(sys.platform == 'win32',
+                     'Windows has a native unicode API')
     def test_undecodable_code(self):
         # Raise SkipTest() if sys.executable is not encodable to ascii
         test.support.workaroundIssue8611()