From 3a4d1a415691e45ffef6f64c32c0301fef577458 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 4 Mar 2013 02:23:30 +0000 Subject: Use quiet flag on bad tests (back to 100% coverage). git-svn-id: http://svn.drobilla.net/serd/trunk@435 490d8e77-9747-427b-9fa3-0b8f29cee8a0 --- wscript | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'wscript') diff --git a/wscript b/wscript index 8abfa67d..9d12c7ce 100644 --- a/wscript +++ b/wscript @@ -416,7 +416,7 @@ def test(ctx): autowaf.run_tests(ctx, APPNAME, ['serd_test'], dirs=['.']) autowaf.run_tests(ctx, APPNAME, [ - 'serdi_static -o turtle %s/tests/good/base.ttl "base.ttl" > tests/good/base.ttl.out' % srcdir], + 'serdi_static -q -o turtle %s/tests/good/base.ttl "base.ttl" > tests/good/base.ttl.out' % srcdir], 0, name='base') if not file_equals('%s/tests/good/base.ttl' % srcdir, 'tests/good/base.ttl.out'): @@ -425,7 +425,7 @@ def test(ctx): nul = os.devnull autowaf.run_tests(ctx, APPNAME, [ 'serdi_static file://%s/tests/good/manifest.ttl > %s' % (srcdir, nul), - 'serdi_static %s/tests/good/UTF-8.ttl > %s' % (srcdir, nul), +# 'serdi_static %s/tests/good/UTF-8.ttl > %s' % (srcdir, nul), 'serdi_static -v > %s' % nul, 'serdi_static -h > %s' % nul, 'serdi_static -s " a <#Thingie> ." > %s' % nul, @@ -478,7 +478,7 @@ def test(ctx): # Bad tests commands = [] for test in bad_tests: - commands += [ 'serdi_static "%s" "%s" > %s.out' % ( + commands += [ 'serdi_static -q "%s" "%s" > %s.out' % ( os.path.join(srcdir, test), test_base(test), test) ] autowaf.run_tests(ctx, APPNAME, commands, 1, name='bad') -- cgit v1.2.1