From bfd94b1087cc0077cf1a751ef771424567b68a54 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 22 Aug 2022 10:36:06 -0400 Subject: Only run autoship test in strict mode --- test/meson.build | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'test') diff --git a/test/meson.build b/test/meson.build index 72a4870..551f44f 100644 --- a/test/meson.build +++ b/test/meson.build @@ -1,5 +1,3 @@ -autoship = find_program('autoship', required: false) - unit_tests = [ 'sord', ] @@ -17,6 +15,10 @@ foreach unit : unit_tests ) endforeach -if autoship.found() - test('autoship', autoship, args: ['test', sord_src_root], suite: 'data') +if get_option('strict') and not meson.is_subproject() + # Check release metadata + autoship = find_program('autoship', required: false) + if autoship.found() + test('autoship', autoship, args: ['test', sord_src_root], suite: 'data') + endif endif -- cgit v1.2.1