diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2012-10-31 23:01:30 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2012-10-31 23:01:30 +0100 |
commit | fce2a6e0c026641cd73d12acde521d12f41ad3ff (patch) | |
tree | 1f051b8d559aeeb012cbd1858b4c72adeb626c42 /Lib/test/test_genericpath.py | |
parent | afe170645753d73b9ce49c7791fbeab15f6d0fc7 (diff) | |
download | cpython-git-fce2a6e0c026641cd73d12acde521d12f41ad3ff.tar.gz |
Issue #15441, #15478: Reenable test_nonascii_abspath() on Windows
The real bug (issue #15478) has been fixed correctly.
Diffstat (limited to 'Lib/test/test_genericpath.py')
-rw-r--r-- | Lib/test/test_genericpath.py | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/Lib/test/test_genericpath.py b/Lib/test/test_genericpath.py index 3eadd5893c..600ffc03d9 100644 --- a/Lib/test/test_genericpath.py +++ b/Lib/test/test_genericpath.py @@ -311,14 +311,10 @@ class CommonTest(GenericTest): @unittest.skipIf(sys.platform == 'darwin', "Mac OS X denies the creation of a directory with an invalid utf8 name") def test_nonascii_abspath(self): - name = b'\xe7w\xf0' - if sys.platform == 'win32': - try: - os.fsdecode(name) - except UnicodeDecodeError: - self.skipTest("the filename %a is not decodable " - "from the ANSI code page %s" - % (name, sys.getfilesystemencoding())) + if support.TESTFN_UNDECODABLE: + name = support.TESTFN_UNDECODABLE + else: + name = b'a\xffb\xe7w\xf0' # Test non-ASCII, non-UTF8 bytes in the path. with warnings.catch_warnings(): |