diff options
author | David Robillard <d@drobilla.net> | 2021-10-21 15:38:10 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-01-28 21:57:07 -0500 |
commit | b404312686874e539b617d1f27ccbaa5a82936af (patch) | |
tree | c2fdb2cc046e6da53071629cd1750dcc327e6cd9 /test/TriGTests/meson.build | |
parent | d4aec28ba8ad24d5aef3ee12beeb1b805148eab1 (diff) | |
download | serd-b404312686874e539b617d1f27ccbaa5a82936af.tar.gz serd-b404312686874e539b617d1f27ccbaa5a82936af.tar.bz2 serd-b404312686874e539b617d1f27ccbaa5a82936af.zip |
Replace serdi with more fine-grained tools
Especially with the new functionality, the complexity of the command-line
interface alone was really becoming unmanageable. The serdi implementation
also had the highest cyclomatic complexity of the entire codebase by a huge
margin.
So, take a page from the Unix philosophy and split serdi into several more
finely-honed tools that can be freely composed. Though there is still
unfortunately quite a bit of option overlap between them due to the common
details of reading RDF, I think the resulting tools are a lot easier to
understand, both from a user and a developer perspective.
Diffstat (limited to 'test/TriGTests/meson.build')
-rw-r--r-- | test/TriGTests/meson.build | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/test/TriGTests/meson.build b/test/TriGTests/meson.build index e7c305e0..95641b44 100644 --- a/test/TriGTests/meson.build +++ b/test/TriGTests/meson.build @@ -7,8 +7,15 @@ args = [ ] test('TriG', - run_test_suite, - args: script_args + args, + run_pipe_suite, + args: pipe_test_script_args + args, env: test_env, - suite: ['suite', 'w3c'], + suite: ['suite', 'w3c', 'pipe'], + timeout: 240) + +test('TriG', + run_sort_suite, + args: sort_test_script_args + args, + env: test_env, + suite: ['suite', 'w3c', 'sort'], timeout: 240) |