]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #16444: disable undecodable characters in test_non_ascii() test until
authorVictor Stinner <victor.stinner@gmail.com>
Sat, 10 Nov 2012 21:32:08 +0000 (22:32 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Sat, 10 Nov 2012 21:32:08 +0000 (22:32 +0100)
the FreeBSD issue is fixed

Lib/test/test_cmd_line_script.py

index 6051e18eddc9607f1d9d746cf29573fccf747908..f066204393aa2d9a05551d3f86a8cf0e263014f6 100644 (file)
@@ -367,10 +367,11 @@ class CmdLineTest(unittest.TestCase):
         # Mac OS X denies the creation of a file with an invalid UTF-8 name.
         # Windows allows to create a name with an arbitrary bytes name, but
         # Python cannot a undecodable bytes argument to a subprocess.
-        if (support.TESTFN_UNDECODABLE
-        and sys.platform not in ('win32', 'darwin')):
-            name = os.fsdecode(support.TESTFN_UNDECODABLE)
-        elif support.TESTFN_NONASCII:
+        #if (support.TESTFN_UNDECODABLE
+        #and sys.platform not in ('win32', 'darwin')):
+        #    name = os.fsdecode(support.TESTFN_UNDECODABLE)
+        #elif support.TESTFN_NONASCII:
+        if support.TESTFN_NONASCII:
             name = support.TESTFN_NONASCII
         else:
             self.skipTest("need support.TESTFN_NONASCII")