Commit e2c574fb authored by Victor Stinner's avatar Victor Stinner

Issue #16444: disable undecodable characters in test_non_ascii() test until

the FreeBSD issue is fixed
parent c8a6967e
...@@ -367,10 +367,11 @@ class CmdLineTest(unittest.TestCase): ...@@ -367,10 +367,11 @@ class CmdLineTest(unittest.TestCase):
# Mac OS X denies the creation of a file with an invalid UTF-8 name. # 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 # Windows allows to create a name with an arbitrary bytes name, but
# Python cannot a undecodable bytes argument to a subprocess. # Python cannot a undecodable bytes argument to a subprocess.
if (support.TESTFN_UNDECODABLE #if (support.TESTFN_UNDECODABLE
and sys.platform not in ('win32', 'darwin')): #and sys.platform not in ('win32', 'darwin')):
name = os.fsdecode(support.TESTFN_UNDECODABLE) # name = os.fsdecode(support.TESTFN_UNDECODABLE)
elif support.TESTFN_NONASCII: #elif support.TESTFN_NONASCII:
if support.TESTFN_NONASCII:
name = support.TESTFN_NONASCII name = support.TESTFN_NONASCII
else: else:
self.skipTest("need support.TESTFN_NONASCII") self.skipTest("need support.TESTFN_NONASCII")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment