blob: 96fbeafc3fc3f2e8fb3408f297673add1fd669d7 [file] [log] [blame]
Manojkiran Eda06fca442022-08-18 07:52:11 +05301pldmd_inc = include_directories('../')
Manojkiran Eda3012b632024-08-22 11:09:01 +05302test_src = declare_dependency(include_directories: pldmd_inc)
Deepak Kodihalli3c275e12019-09-21 06:39:39 -05003
Manojkiran Eda3012b632024-08-22 11:09:01 +05304tests = ['pldmd_registration_test']
Deepak Kodihalli3c275e12019-09-21 06:39:39 -05005
Deepak Kodihalli3c275e12019-09-21 06:39:39 -05006foreach t : tests
Manojkiran Eda3012b632024-08-22 11:09:01 +05307 test(
8 t,
9 executable(
10 t.underscorify(),
11 t + '.cpp',
12 implicit_include_directories: false,
13 dependencies: [libpldm_dep, nlohmann_json_dep, gtest, test_src],
14 ),
15 workdir: meson.current_source_dir(),
16 )
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050017endforeach