diff options
| author | David Robillard <d@drobilla.net> | 2025-11-13 17:55:24 -0500 |
|---|---|---|
| committer | David Robillard <d@drobilla.net> | 2025-11-13 19:00:09 -0500 |
| commit | c664e354487332ba5f204c62a4a5df41b2cbda1f (patch) | |
| tree | 0567a967dae2c0d1dc9d2e0d8c02c16f086c25e6 /test | |
| parent | 89de262da7dce7d3c10c384179db4962dc0a4455 (diff) | |
| download | lv2-c664e354487332ba5f204c62a4a5df41b2cbda1f.tar.xz | |
Fix licensing metadata syntax
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() |