From 5cc78ce06b93db41b81b895784245c3174f830ad Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Tue, 12 Feb 2019 11:15:09 -0500 Subject: [PATCH] Merge #13787: Test for Windows encoding issue 15b31032a6 appveyor: Remove outdated libraries (Chun Kuan Lee) ae892adceb tests: accept unicode characters on Windows (Chun Kuan Lee) Pull request description: This PR removes unused Windows compatible path. Encoding issues has been solved. Tree-SHA512: d24dce035fe3b576eaa002896f815a6691e88618ea371171d7e39883e1d63b3ed4d4631ab3b3a26bd67ae4e8ae13b1ff188942ab7ac6a93d704e0de301368cd0 # Conflicts: # .appveyor.yml --- test/functional/test_runner.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py index 829cdb069f..ad36770968 100755 --- a/test/functional/test_runner.py +++ b/test/functional/test_runner.py @@ -280,10 +280,6 @@ def main(): # Create base test directory tmpdir = "%s/test_runner_∋_🏃_%s" % (args.tmpdirprefix, datetime.datetime.now().strftime("%Y%m%d_%H%M%S")) - # If we fixed the command-line and filename encoding issue on Windows, these two lines could be removed - if config["environment"]["EXEEXT"] == ".exe": - tmpdir = "%s/test_runner_%s" % (args.tmpdirprefix, datetime.datetime.now().strftime("%Y%m%d_%H%M%S")) - os.makedirs(tmpdir) logging.debug("Temporary test directory at %s" % tmpdir)