blob: e56441b3a07db7407008d17dc737c0501d05fb0c [file] [log] [blame]
Alexander Hansen8ec69e42025-07-18 15:07:49 +02001
Alexander Hansenade5c5a2025-07-29 13:38:24 +02002testcases = [
3 'software_get_random_softwareid',
4 'software_config',
5 'software_association',
Alexander Hansend880e4d2025-08-08 11:24:28 +02006 'software_version',
Alexander Hansen18b5e612025-08-08 11:35:40 +02007 'software',
Alexander Hansenade5c5a2025-07-29 13:38:24 +02008]
Alexander Hansen8ec69e42025-07-18 15:07:49 +02009
10foreach t : testcases
11 test(
12 t,
13 executable(
14 t,
15 f'@t@.cpp',
16 include_directories: [common_include],
17 dependencies: [
18 libpldm_dep,
19 sdbusplus_dep,
20 phosphor_logging_dep,
21 gtest,
22 ],
23 link_with: [
24 libpldmutil,
25 libpldmcreatepkg,
26 software_common_lib,
27 libexampledevice,
28 ],
29 ),
30 )
31endforeach
32