diff options
Diffstat (limited to 'test/meson.build')
-rw-r--r-- | test/meson.build | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/test/meson.build b/test/meson.build index a1cac7ae..57576f04 100644 --- a/test/meson.build +++ b/test/meson.build @@ -1,4 +1,4 @@ -# Copyright 2021-2022 David Robillard <d@drobilla.net> +# Copyright 2020-2022 David Robillard <d@drobilla.net> # SPDX-License-Identifier: CC0-1.0 OR ISC run_test_suite = files('run_test_suite.py') @@ -9,6 +9,7 @@ wrapper = meson.get_external_property('exe_wrapper', '') # Project Metadata # #################### +# Check release metadata if get_option('strict') and not meson.is_subproject() autoship = find_program('autoship', required: false) if autoship.found() @@ -16,6 +17,14 @@ if get_option('strict') and not meson.is_subproject() endif endif +# Check licensing metadata +reuse = find_program('reuse', required: false) +if reuse.found() + test('REUSE', reuse, + args: ['--root', serd_src_root, 'lint'], + suite: 'data') +endif + ############## # Unit Tests # ############## |