aboutsummaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-10-28 13:34:47 +0100
committerDavid Robillard <d@drobilla.net>2018-10-28 13:34:47 +0100
commitdfe929e21a47f1f5bb6fec3f57180fe8b860ecd2 (patch)
treee57bd31a058d2fad7aed01493a9b9f3470aaedb6 /wscript
parent8da22b25c1c1bf47b803f9ce80e2d23d09bb50b4 (diff)
downloadserd-dfe929e21a47f1f5bb6fec3f57180fe8b860ecd2.tar.gz
serd-dfe929e21a47f1f5bb6fec3f57180fe8b860ecd2.tar.bz2
serd-dfe929e21a47f1f5bb6fec3f57180fe8b860ecd2.zip
Clean up test output
Diffstat (limited to 'wscript')
-rw-r--r--wscript15
1 files changed, 8 insertions, 7 deletions
diff --git a/wscript b/wscript
index 061f4852..2fe126ba 100644
--- a/wscript
+++ b/wscript
@@ -331,7 +331,8 @@ def test_suite(ctx, base_uri, testdir, report, isyntax, osyntax, options=''):
asserter = 'http://drobilla.net/drobilla#me'
def run_test(command, expected_return, name, quiet=False):
- result = autowaf.run_test(ctx, APPNAME, command, expected_return, name=name, quiet=quiet)
+ header = Options.options.verbose_tests
+ result = autowaf.run_test(ctx, APPNAME, command, expected_return, name=name, header=header, quiet=quiet)
if not result[0]:
autowaf.run_test(ctx, APPNAME,
lambda: result[1][1] != '',
@@ -341,7 +342,7 @@ def test_suite(ctx, base_uri, testdir, report, isyntax, osyntax, options=''):
def run_tests(test_class, expected_return):
tests = []
for s, desc in model.items():
- if str(test_class) in desc['http://www.w3.org/1999/02/22-rdf-syntax-ns#type']:
+ if test_class in desc['http://www.w3.org/1999/02/22-rdf-syntax-ns#type']:
tests += [s]
if len(tests) == 0:
return
@@ -353,7 +354,9 @@ def test_suite(ctx, base_uri, testdir, report, isyntax, osyntax, options=''):
thru_options += [flags]
thru_options_iter = itertools.cycle(thru_options)
- with autowaf.begin_tests(ctx, APPNAME, str(test_class)):
+ quiet = not Options.options.verbose_tests
+ test_class_name = test_class[test_class.find('#') + 1:]
+ with autowaf.begin_tests(ctx, APPNAME, test_class_name):
for (num, test) in enumerate(sorted(tests)):
action_node = model[test][mf + 'action'][0]
action = os.path.join('tests', testdir, os.path.basename(action_node))
@@ -364,7 +367,7 @@ def test_suite(ctx, base_uri, testdir, report, isyntax, osyntax, options=''):
options, rel_action, uri, action + '.out')
# Run strict test
- result = run_test(command, expected_return, action)
+ result = run_test(command, expected_return, action, quiet=quiet)
if (mf + 'result') in model[test]:
# Check output against test suite
check_uri = model[test][mf + 'result'][0]
@@ -428,7 +431,7 @@ def test(ctx):
ctx, APPNAME,
lambda: file_equals('%s.out' % in_path,
'%s/tests/good/%s.ttl' % (srcdir, expected_name)),
- True, name=in_name + '-check')
+ True, quiet=True, name=in_name + '-check')
with autowaf.begin_tests(ctx, APPNAME, 'ThroughSyntax'):
test_ttl('base', 'base')
@@ -499,8 +502,6 @@ def test(ctx):
'TriGTests', report, 'TriG', 'NQuads', '-a')
autowaf.post_test(ctx, APPNAME)
- if ctx.autowaf_tests[APPNAME]['failed'] > 0:
- ctx.fatal('Failed %s tests' % APPNAME)
def posts(ctx):
path = str(ctx.path.abspath())