blob: e7a3ac7cb0b2360ea50dd59f46280ff9a178cad2 [file] [log] [blame]
Tom Joseph53279882021-04-28 06:29:13 -07001common_test_src = declare_dependency(
2 sources: [
3 '../utils.cpp'])
4
5tests = [
6 'pldm_utils_test',
7]
8
9foreach t : tests
10 test(t, executable(t.underscorify(), t + '.cpp',
11 implicit_include_directories: false,
Tom Joseph53279882021-04-28 06:29:13 -070012 dependencies: [
13 common_test_src,
14 gtest,
15 libpldm_dep,
Patrick Williamscf772842023-12-07 14:39:52 -060016 nlohmann_json_dep,
Tom Joseph53279882021-04-28 06:29:13 -070017 phosphor_dbus_interfaces,
Riya Dixit49cfb132023-03-02 04:26:53 -060018 phosphor_logging_dep,
Manojkiran Eda06fca442022-08-18 07:52:11 +053019 libpldmutils,
Tom Joseph53279882021-04-28 06:29:13 -070020 sdbusplus]),
21 workdir: meson.current_source_dir())
22endforeach