diff options
author | rathann <dominik@greysector.net> | 2020-07-31 17:03:41 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-31 10:03:41 -0700 |
commit | 26060b2cfe835e208d29e12d70a1a8eee70b3c14 (patch) | |
tree | 478b1613598e246e7fdd87138a0870f49364c1a8 /scripts/test/support.py | |
parent | 6733a055fd7873210b6f3b50f198ae05178ec8fb (diff) | |
download | binaryen-26060b2cfe835e208d29e12d70a1a8eee70b3c14.tar.gz binaryen-26060b2cfe835e208d29e12d70a1a8eee70b3c14.tar.bz2 binaryen-26060b2cfe835e208d29e12d70a1a8eee70b3c14.zip |
Specify UTF-8 encoding instead of relying on locale default (#3009)
Current locale may not be UTF-8, which makes the spec/names.wast
test fail. Fixes issue #3003.
Diffstat (limited to 'scripts/test/support.py')
-rw-r--r-- | scripts/test/support.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/test/support.py b/scripts/test/support.py index 6eee79910..8e4ef85e8 100644 --- a/scripts/test/support.py +++ b/scripts/test/support.py @@ -169,7 +169,7 @@ def run_command(cmd, expected_status=0, stderr=None, "Can't redirect stderr if using expected_err" stderr = subprocess.PIPE print('executing: ', ' '.join(cmd)) - proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=stderr, universal_newlines=True) + proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=stderr, universal_newlines=True, encoding='UTF-8') out, err = proc.communicate() code = proc.returncode if expected_status is not None and code != expected_status: |