diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2021-01-30 09:52:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-30 09:52:43 +0000 |
commit | f0fbb31ccfa78ca1d7b7f9cedfbb090bf36d3e64 (patch) | |
tree | bb4a528ba77676a90fe8e57fd0a736adf3dbe8f5 /run_unittests.py | |
parent | 0626465ea8aa65b10776d5c4064e881fe0d6fa25 (diff) | |
parent | ec02753fbf9c15389f953d9cfd040635f84779d9 (diff) | |
download | meson-f0fbb31ccfa78ca1d7b7f9cedfbb090bf36d3e64.zip meson-f0fbb31ccfa78ca1d7b7f9cedfbb090bf36d3e64.tar.gz meson-f0fbb31ccfa78ca1d7b7f9cedfbb090bf36d3e64.tar.bz2 |
Merge pull request #8200 from bonzini/mtest-asyncio-logs
mtest: improvements to logging
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/run_unittests.py b/run_unittests.py index e2c108f..2a14f78 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -1603,6 +1603,7 @@ class BasePlatformTests(unittest.TestCase): p = subprocess.run(command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, env=env, + encoding='utf-8', universal_newlines=True, cwd=workdir, timeout=60 * 5) print(p.stdout) if p.returncode != 0: |