blob: a5ed0bf4b954cfb76f723c5c6c38a11575cf1e2f [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 Hansenade5c5a2025-07-29 13:38:24 +02007]
Alexander Hansen8ec69e42025-07-18 15:07:49 +02008
9foreach t : testcases
10 test(
11 t,
12 executable(
13 t,
14 f'@t@.cpp',
15 include_directories: [common_include],
16 dependencies: [
17 libpldm_dep,
18 sdbusplus_dep,
19 phosphor_logging_dep,
20 gtest,
21 ],
22 link_with: [
23 libpldmutil,
24 libpldmcreatepkg,
25 software_common_lib,
26 libexampledevice,
27 ],
28 ),
29 )
30endforeach
31