diff options
author | David Robillard <d@drobilla.net> | 2023-01-11 16:07:52 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-01-11 17:06:57 -0500 |
commit | 94f3e2e5a2cd789f32459d662b351d45eca8e52c (patch) | |
tree | cac7be4df2eae40cf43953262e17151304a0016f /test | |
parent | a92b56e6455aa23a1b4dff8b1636506175243ea4 (diff) | |
download | pugl-94f3e2e5a2cd789f32459d662b351d45eca8e52c.tar.gz pugl-94f3e2e5a2cd789f32459d662b351d45eca8e52c.tar.bz2 pugl-94f3e2e5a2cd789f32459d662b351d45eca8e52c.zip |
Run inline build tests for the sake of completeness
Diffstat (limited to 'test')
-rw-r--r-- | test/meson.build | 28 |
1 files changed, 18 insertions, 10 deletions
diff --git a/test/meson.build b/test/meson.build index b4ce923..c7d01c1 100644 --- a/test/meson.build +++ b/test/meson.build @@ -190,12 +190,16 @@ if host_machine.system() == 'darwin' unified_args += objcpp.get_supported_arguments( test_cpp_args + objcpp_args) - executable( + test( 'inline_objcpp', - 'test_inline_objcpp.mm', - dependencies: unified_deps, - include_directories: include_directories(includes), - objcpp_args: unified_args, + executable( + 'test_inline_objcpp', + 'test_inline_objcpp.mm', + dependencies: unified_deps, + include_directories: include_directories(includes), + objcpp_args: unified_args, + ), + suite: 'unit', ) elif is_variable('cpp') @@ -222,11 +226,15 @@ elif is_variable('cpp') ] endif - executable( + test( 'inline_cpp', - 'test_inline_cpp.cpp', - cpp_args: test_cpp_args + unified_args, - dependencies: unified_deps, - include_directories: include_directories(includes), + executable( + 'test_inline_cpp', + 'test_inline_cpp.cpp', + cpp_args: test_cpp_args + unified_args, + dependencies: unified_deps, + include_directories: include_directories(includes), + ), + suite: 'unit', ) endif |