diff options
author | Chun Kuan Lee <ken2812221@gmail.com> | 2018-09-30 14:36:12 +0800 |
---|---|---|
committer | Chun Kuan Lee <ken2812221@gmail.com> | 2019-02-12 05:17:15 +0800 |
commit | ae892adceb0ad41bf3edfcebc6537c11d492127c (patch) | |
tree | 23dea7cf0291c58f28fa00f7e57fb1443aa68fd2 | |
parent | 6f4e0d154256c2041f15f0c4acba5707e985d649 (diff) |
tests: accept unicode characters on Windows
-rwxr-xr-x | test/functional/test_runner.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py index d8f92e2601..999cd72108 100755 --- a/test/functional/test_runner.py +++ b/test/functional/test_runner.py @@ -250,10 +250,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) |