summaryrefslogtreecommitdiff
path: root/test/run-tests.py
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2020-01-31 13:35:27 -0800
committerGitHub <noreply@github.com>2020-01-31 13:35:27 -0800
commitd18058fe482a75ec8fefbef56d27cf5c8e36afd8 (patch)
tree1194a4e8e239013713d38123275c636e74d3646a /test/run-tests.py
parentea255e38b9bcc072ae7f1fc8062e208ed88c121f (diff)
downloadwabt-d18058fe482a75ec8fefbef56d27cf5c8e36afd8.tar.gz
wabt-d18058fe482a75ec8fefbef56d27cf5c8e36afd8.tar.bz2
wabt-d18058fe482a75ec8fefbef56d27cf5c8e36afd8.zip
Remove support for python2 (#1321)
Diffstat (limited to 'test/run-tests.py')
-rwxr-xr-xtest/run-tests.py15
1 files changed, 2 insertions, 13 deletions
diff --git a/test/run-tests.py b/test/run-tests.py
index 9df51e26..02799f17 100755
--- a/test/run-tests.py
+++ b/test/run-tests.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
#
# Copyright 2016 WebAssembly Community Group participants
#
@@ -15,7 +15,6 @@
# limitations under the License.
#
-from __future__ import print_function
import argparse
import difflib
import fnmatch
@@ -524,17 +523,7 @@ class TestInfo(object):
else:
m = re.match(b'\\s*;;;(.*)$', line)
if m:
- # 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()
-
+ directive = m.group(1).decode('utf-8').strip()
if state == 'header':
key, value = directive.split(':', 1)
key = key.strip()