summaryrefslogtreecommitdiff
path: root/test/run-tests.py
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2020-01-08 19:33:40 -0800
committerGitHub <noreply@github.com>2020-01-08 19:33:40 -0800
commitea8ce4f61fb1d15ebb91e7f136767444c44ccc80 (patch)
treec72fc74a9d839871465e4d4a6c5dd4a753d4d67c /test/run-tests.py
parent168ba9100b8168782668462f87540dfea16be26d (diff)
downloadwabt-ea8ce4f61fb1d15ebb91e7f136767444c44ccc80.tar.gz
wabt-ea8ce4f61fb1d15ebb91e7f136767444c44ccc80.tar.bz2
wabt-ea8ce4f61fb1d15ebb91e7f136767444c44ccc80.zip
run-tests.py works properly with python3 (#1285)
Fixes #1180 and #1181.
Diffstat (limited to 'test/run-tests.py')
-rwxr-xr-xtest/run-tests.py54
1 files changed, 34 insertions, 20 deletions
diff --git a/test/run-tests.py b/test/run-tests.py
index c91408d4..c47cb5d9 100755
--- a/test/run-tests.py
+++ b/test/run-tests.py
@@ -162,8 +162,11 @@ def Indent(s, spaces):
def DiffLines(expected, actual):
- expected_lines = [line for line in expected.splitlines() if line]
- actual_lines = [line for line in actual.splitlines() if line]
+ def Decode(s):
+ return s.decode('utf-8', 'replace')
+
+ expected_lines = [Decode(line) for line in expected.splitlines() if line]
+ actual_lines = [Decode(line) for line in actual.splitlines() if line]
return list(
difflib.unified_diff(expected_lines, actual_lines, fromfile='expected',
tofile='actual', lineterm=''))
@@ -268,7 +271,7 @@ class Command(object):
process = subprocess.Popen(self.args, cwd=cwd, env=env,
stdout=None if console_out else subprocess.PIPE,
stderr=None if console_out else subprocess.PIPE,
- universal_newlines=True, **kwargs)
+ **kwargs)
timer = threading.Timer(timeout, KillProcess)
try:
timer.start()
@@ -315,8 +318,8 @@ class TestResult(object):
def __init__(self):
self.results = []
- self.stdout = ''
- self.stderr = ''
+ self.stdout = b''
+ self.stderr = b''
self.duration = 0
def GetLastCommand(self):
@@ -479,7 +482,8 @@ class TestInfo(object):
self.filename = filename
test_path = os.path.join(REPO_ROOT_DIR, filename)
- with open(test_path) as f:
+ # Read/write as binary because spec tests may have invalid UTF-8 codes.
+ with open(test_path, 'rb') as f:
state = 'header'
empty = True
header_lines = []
@@ -488,9 +492,9 @@ class TestInfo(object):
stderr_lines = []
for line in f.readlines():
empty = False
- m = re.match(r'\s*\(;; (STDOUT|STDERR) ;;;$', line)
+ m = re.match(b'\\s*\\(;; (STDOUT|STDERR) ;;;$', line.strip())
if m:
- directive = m.group(1)
+ directive = m.group(1).decode('utf-8')
if directive == 'STDERR':
state = 'stderr'
continue
@@ -498,9 +502,19 @@ class TestInfo(object):
state = 'stdout'
continue
else:
- m = re.match(r'\s*;;;(.*)$', line)
+ m = re.match(b'\\s*;;;(.*)$', line)
if m:
- directive = m.group(1).strip()
+ # The matched string has type bytes, but in python2
+ # that is the same as str. In python3 that needs to be
+ # decoded first. If we decode the string in python2 the
+ # result is a unicode string, which doesn't work
+ # everywhere (as used in a subprocess environment, for
+ # example).
+ if sys.version_info.major == 3:
+ directive = m.group(1).decode('utf-8').strip()
+ else:
+ directive = m.group(1).strip()
+
if state == 'header':
key, value = directive.split(':', 1)
key = key.strip()
@@ -517,7 +531,7 @@ class TestInfo(object):
state = 'input'
if state == 'header':
- header_lines.append(line)
+ header_lines.append(line.decode('utf-8'))
if state == 'input':
if self.input_filename:
raise Error('Can\'t have STDIN_FILE and input')
@@ -530,9 +544,9 @@ class TestInfo(object):
raise Error('empty test file')
self.header = ''.join(header_lines)
- self.input_ = ''.join(input_lines)
- self.expected_stdout = ''.join(stdout_lines)
- self.expected_stderr = ''.join(stderr_lines)
+ self.input_ = b''.join(input_lines)
+ self.expected_stdout = b''.join(stdout_lines)
+ self.expected_stderr = b''.join(stderr_lines)
if not self.cmds:
raise Error('test has no commands')
@@ -555,23 +569,23 @@ class TestInfo(object):
else:
# add an empty line for each header line so the line numbers match
gen_input_file.write(('\n' * self.header.count('\n')).encode('ascii'))
- gen_input_file.write(self.input_.encode('ascii'))
+ gen_input_file.write(self.input_)
gen_input_file.flush()
return gen_input_file.name
def Rebase(self, stdout, stderr):
test_path = os.path.join(REPO_ROOT_DIR, self.filename)
with open(test_path, 'wb') as f:
- f.write(self.header)
+ f.write(self.header.encode('ascii'))
f.write(self.input_)
if stderr:
- f.write('(;; STDERR ;;;\n')
+ f.write(b'(;; STDERR ;;;\n')
f.write(stderr)
- f.write(';;; STDERR ;;)\n')
+ f.write(b';;; STDERR ;;)\n')
if stdout:
- f.write('(;; STDOUT ;;;\n')
+ f.write(b'(;; STDOUT ;;;\n')
f.write(stdout)
- f.write(';;; STDOUT ;;)\n')
+ f.write(b';;; STDOUT ;;)\n')
def Diff(self, stdout, stderr):
msg = ''