diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/meson.build | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/meson.build b/test/meson.build index 5a2bcfb..5b6a41c 100644 --- a/test/meson.build +++ b/test/meson.build @@ -6,6 +6,13 @@ ######## if get_option('lint') + # Check licensing metadata + reuse = find_program('reuse', required: false) + if reuse.found() + reuse_args = ['--root', lv2_source_root, 'lint'] + test('REUSE', reuse, args: reuse_args, suite: 'data') + endif + # Check for spelling errors codespell = find_program('codespell', required: get_option('tests')) if codespell.found() |