diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/meson.build | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/test/meson.build b/test/meson.build index 092499a..9f87232 100644 --- a/test/meson.build +++ b/test/meson.build @@ -122,17 +122,15 @@ test_names = [ ] # Build and run tests -if not get_option('tests').disabled() - foreach test_name : test_names - test( +foreach test_name : test_names + test( + test_name, + executable( test_name, - executable( - test_name, - files('test_@0@.c'.format(test_name)), - c_args: c_suppressions, - dependencies: lv2_dep, - ), - suite: 'unit', - ) - endforeach -endif + files('test_@0@.c'.format(test_name)), + c_args: c_suppressions, + dependencies: lv2_dep, + ), + suite: 'unit', + ) +endforeach |