aboutsummaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-05-12 13:09:03 +0200
committerDavid Robillard <d@drobilla.net>2018-10-28 14:25:25 +0100
commit64ee2972b328ef93553f84a813216b787b358f8f (patch)
tree40c2601de63461446dc7e04277ea4625ad7c96b4 /wscript
parent4f366a039c5ddb58d91352408fce3bdcead27728 (diff)
downloadserd-64ee2972b328ef93553f84a813216b787b358f8f.tar.gz
serd-64ee2972b328ef93553f84a813216b787b358f8f.tar.bz2
serd-64ee2972b328ef93553f84a813216b787b358f8f.zip
Factor out test output diffing
Diffstat (limited to 'wscript')
-rw-r--r--wscript20
1 files changed, 12 insertions, 8 deletions
diff --git a/wscript b/wscript
index b8d709b7..39c240b1 100644
--- a/wscript
+++ b/wscript
@@ -250,9 +250,15 @@ def earl_assertion(test, passed, asserter):
passed_str,
datetime.datetime.now().replace(microsecond=0).isoformat())
-def check_output(out_filename, check_filename, subst_from='', subst_to=''):
+def show_diff(from_lines, to_lines, from_filename, to_filename):
import difflib
import sys
+
+ for line in difflib.unified_diff(
+ from_lines, to_lines, fromfile=from_filename, tofile=to_filename):
+ sys.stderr.write(line)
+
+def check_output(out_filename, check_filename, subst_from='', subst_to=''):
if not os.access(out_filename, os.F_OK):
Logs.pprint('RED', 'FAIL: output %s is missing' % out_filename)
elif not file_equals(check_filename, out_filename, subst_from, subst_to):
@@ -260,12 +266,10 @@ def check_output(out_filename, check_filename, subst_from='', subst_to=''):
check_filename))
with io.open(out_filename, encoding='utf-8') as out_file:
with io.open(check_filename, encoding='utf-8') as check_file:
- diff = difflib.unified_diff(check_file.readlines(),
- out_file.readlines(),
- fromfile=check_filename,
- tofile=out_filename)
- for line in diff:
- sys.stderr.write(line)
+ show_diff(check_file.readlines(),
+ out_file.readlines(),
+ check_filename,
+ out_filename)
else:
return True
@@ -273,7 +277,7 @@ def check_output(out_filename, check_filename, subst_from='', subst_to=''):
def test_thru(ctx, base, path, check_filename, flags, isyntax, osyntax,
options='', quiet=False):
- in_filename = os.path.join(ctx.path.abspath(), path);
+ in_filename = os.path.join(ctx.path.abspath(), path)
out_filename = path + '.thru'
command = ('serdi_static %s %s -i %s -o %s -p foo "%s" "%s" | '