commit | 700cfa8c90a90016638bac13c4efd03786b2b2a0 | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Thu Jun 25 17:56:31 2020 +0300 |
committer | GitHub <noreply@github.com> | Thu Jun 25 17:56:31 2020 +0300 |
tree | 62994f7b8d6fccd910d5f65bd6cd49a4f72bf8ae | |
parent | 8ea6353f60625c96ce96588c70ff24a77f8c71f9 [diff] [blame] |
bpo-41069: Make TESTFN and the CWD for tests containing non-ascii characters. (GH-21035)
diff --git a/Lib/test/libregrtest/main.py b/Lib/test/libregrtest/main.py index 3f9771b..7675a97 100644 --- a/Lib/test/libregrtest/main.py +++ b/Lib/test/libregrtest/main.py
@@ -597,6 +597,7 @@ test_cwd = 'test_python_worker_{}'.format(pid) else: test_cwd = 'test_python_{}'.format(pid) + test_cwd += support.FS_NONASCII test_cwd = os.path.join(self.tmp_dir, test_cwd) return test_cwd