diff options
author | David Robillard <d@drobilla.net> | 2022-01-14 01:43:37 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-01-28 21:57:07 -0500 |
commit | 6ffe331cfc8af0735b263ab7af6f84b1b4418102 (patch) | |
tree | 42dd2f5b2f04798421f9c489cf65a72b7564b87b /test | |
parent | b404312686874e539b617d1f27ccbaa5a82936af (diff) | |
download | serd-6ffe331cfc8af0735b263ab7af6f84b1b4418102.tar.gz serd-6ffe331cfc8af0735b263ab7af6f84b1b4418102.tar.bz2 serd-6ffe331cfc8af0735b263ab7af6f84b1b4418102.zip |
Make tools read stdin by default
Diffstat (limited to 'test')
-rw-r--r-- | test/meson.build | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/test/meson.build b/test/meson.build index 9830a1dd..c0ed56e4 100644 --- a/test/meson.build +++ b/test/meson.build @@ -81,9 +81,7 @@ if is_variable('serd_pipe') # Basic invalid arguments bad_args = [ - ['-B', 'nonuriorpath'], ['-B'], - ['-I', 'turtle'], ['-I', 'unknown'], ['-I'], ['-O', 'unknown'], @@ -112,12 +110,6 @@ if is_variable('serd_pipe') suite: ['tools', 'pipe', 'options']) endforeach - test('none', - tool, - env: test_env, - should_fail: true, - suite: ['tools', 'pipe', 'options']) - test('remote', tool, args: ['ftp://unsupported.org'], @@ -287,12 +279,6 @@ if is_variable('serd_sort') suite: ['tools', 'sort', 'options']) endforeach - test('none', - tool, - env: test_env, - should_fail: true, - suite: ['tools', 'sort', 'options']) - # IO errors test('read_dir', @@ -343,7 +329,6 @@ if is_variable('serd_filter') bad_args = [ ['-f', '/no/such/file.nt', '-'], ['-z'], - ['?s ?p ?o .'], ] foreach args : bad_args @@ -381,13 +366,6 @@ if is_variable('serd_filter') # Different input sources - test('missing_input', - tool, - args: ['?s ?p ?o .', '/does/not/exist.ttl'], - env: test_env, - should_fail: true, - suite: ['tools', 'filter', 'input']) - test('filter_dir', tool, args: ['?s ?p ?o .', meson.source_root()], |