aboutsummaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'wscript')
-rw-r--r--wscript6
1 files changed, 4 insertions, 2 deletions
diff --git a/wscript b/wscript
index c41a99c3..67707584 100644
--- a/wscript
+++ b/wscript
@@ -128,7 +128,8 @@ def test(ctx):
'./serdi_static file://../tests/manifest.ttl > /dev/null',
'./serdi_static ../tests/UTF-8.ttl > /dev/null',
'./serdi_static -v > /dev/null',
- './serdi_static -s "<foo> a <#Thingie> ." > /dev/null'],
+ './serdi_static -s "<foo> a <#Thingie> ." > /dev/null',
+ './serdi_static /dev/null > /dev/null'],
0, name='serdi-cmd-good')
autowaf.run_tests(ctx, APPNAME,
@@ -136,7 +137,8 @@ def test(ctx):
'./serdi_static ftp://example.org/unsupported.ttl > /dev/null',
'./serdi_static -o > /dev/null',
'./serdi_static -z > /dev/null',
- './serdi_static -o illegal > /dev/null'],
+ './serdi_static -o illegal > /dev/null',
+ './serdi_static /no/such/file > /dev/null'],
1, name='serdi-cmd-bad')
commands = []