diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2015-04-13 23:45:10 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2015-04-13 23:45:10 +0300 |
commit | f19fd507022635c7acb7c45075ae4ba75d5970b8 (patch) | |
tree | a3554e0aacf21de6da2aae58b3023a37b8b383a1 /run_tests.py | |
parent | a8803faf0477260c431df2b47e36641b45d41af0 (diff) | |
download | meson-f19fd507022635c7acb7c45075ae4ba75d5970b8.zip meson-f19fd507022635c7acb7c45075ae4ba75d5970b8.tar.gz meson-f19fd507022635c7acb7c45075ae4ba75d5970b8.tar.bz2 |
Encoding of result file is always utf-8.
Diffstat (limited to 'run_tests.py')
-rwxr-xr-x | run_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_tests.py b/run_tests.py index 60cd094..79c17cd 100755 --- a/run_tests.py +++ b/run_tests.py @@ -215,7 +215,7 @@ def detect_tests_to_run(): def run_tests(): all_tests = detect_tests_to_run() - logfile = open('meson-test-run.txt', 'w') + logfile = open('meson-test-run.txt', 'w', encoding="utf_8") junit_root = ET.Element('testsuites') try: os.mkdir(test_build_dir) |