From c6d028b2ea6ac478fe644b671ca9d09ddb79e926 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 25 Jan 2011 19:34:23 +0000 Subject: Fix/test reading empty files. git-svn-id: http://svn.drobilla.net/serd/trunk@70 490d8e77-9747-427b-9fa3-0b8f29cee8a0 --- wscript | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'wscript') 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 " a <#Thingie> ." > /dev/null'], + './serdi_static -s " 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 = [] -- cgit v1.2.1