summaryrefslogtreecommitdiff
path: root/tests/find_static_tests.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2018-05-02 10:49:23 -0700
committerDylan Baker <dylan@pnwbakers.com>2018-05-03 15:13:51 -0700
commit55207ea5154dfaa6d2c128124c50e3be4f9b6440 (patch)
tree022defe35689dde68f42fbf68cf09e00737d699c /tests/find_static_tests.py
parent9ba94d728b0731f58506fcc9b452d3e27a8db5ef (diff)
find_static_tests.py: fix python2 compatibility
Because python2 uses bytes, but python3 uses unicode. CC: Michel Dänzer <michel.daenzer@amd.com> Fixes: d42d909cd754d0e2c41eec60f3a1015f2d882b95 ("tests: Add script to find all hand written test files") Tested-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'tests/find_static_tests.py')
-rw-r--r--tests/find_static_tests.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/tests/find_static_tests.py b/tests/find_static_tests.py
index 215273159..795a56dc9 100644
--- a/tests/find_static_tests.py
+++ b/tests/find_static_tests.py
@@ -28,6 +28,8 @@ import argparse
import io
import os
+import six
+
def main():
parser = argparse.ArgumentParser()
@@ -55,7 +57,14 @@ def main():
for dirpath, _, filenames in os.walk(directory):
for filename in filenames:
if os.path.splitext(filename)[1] in exts:
- files.append(os.path.join(dirpath, filename))
+ name = os.path.join(dirpath, filename)
+ if six.PY2:
+ # This might not be correct, but it's fine. As long as the
+ # two files are the same it'll work, and utf-8 is what
+ # everyone *should* be using, and as a superset of ascii
+ # *should* cover most people
+ name = name.decode('utf-8', 'replace')
+ files.append(name)
if os.path.exists(args.output):
with io.open(args.output, 'rt', encoding='utf-8') as f: