blob: ce47e57a4a1817a2bf4e4609b7460db37fb1b450 [file] [log] [blame]
Tom Joseph75356c12021-06-20 03:52:40 -07001fw_update_test_src = declare_dependency(
2 sources: [
3 '../inventory_manager.cpp',
Tom Joseph1630f392021-06-29 04:30:03 -07004 '../package_parser.cpp',
Tom Josephef90b0d2021-08-17 07:12:49 -07005 '../device_updater.cpp',
Tom Joseph4d8d5772021-08-17 07:35:05 -07006 '../update_manager.cpp',
Tom Joseph75356c12021-06-20 03:52:40 -07007 '../../common/utils.cpp',
Andrew Jeffery7c1dc7e2023-04-28 14:52:16 +09308 ])
Tom Joseph75356c12021-06-20 03:52:40 -07009
10tests = [
11 'inventory_manager_test',
Tom Joseph1630f392021-06-29 04:30:03 -070012 'package_parser_test',
Tom Josephef90b0d2021-08-17 07:12:49 -070013 'device_updater_test'
Tom Joseph75356c12021-06-20 03:52:40 -070014]
15
16foreach t : tests
17 test(t, executable(t.underscorify(), t + '.cpp',
18 implicit_include_directories: false,
Andrew Jeffery7c1dc7e2023-04-28 14:52:16 +093019 include_directories: '../../pldmd',
Tom Joseph75356c12021-06-20 03:52:40 -070020 link_args: dynamic_linker,
Patrick Williams87bfacd2023-11-29 06:44:36 -060021 build_rpath: get_option('oe-sdk').allowed() ? rpath : '',
Tom Joseph75356c12021-06-20 03:52:40 -070022 dependencies: [
23 fw_update_test_src,
Brad Bishop1695b662021-11-24 14:52:09 -050024 gmock,
Tom Joseph75356c12021-06-20 03:52:40 -070025 gtest,
26 libpldm_dep,
Manojkiran Eda06fca442022-08-18 07:52:11 +053027 libpldmutils,
Patrick Williamscf772842023-12-07 14:39:52 -060028 nlohmann_json_dep,
Tom Joseph75356c12021-06-20 03:52:40 -070029 phosphor_dbus_interfaces,
Riya Dixit49cfb132023-03-02 04:26:53 -060030 phosphor_logging_dep,
Tom Joseph75356c12021-06-20 03:52:40 -070031 sdbusplus,
32 sdeventplus]),
33 workdir: meson.current_source_dir())
34endforeach