blob: ee1bdb1fd9ccfd7e322a8da90f6c77af77d3c11c [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,
21 build_rpath: get_option('oe-sdk').enabled() ? rpath : '',
22 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,
Tom Joseph75356c12021-06-20 03:52:40 -070028 nlohmann_json,
29 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