blob: 76813c53c4593267f79b3033f656f75466fa79ae [file] [log] [blame]
Alexander Hansen8d9e6da2025-01-14 14:17:19 +01001
2testcases = [
3 'test_software',
4 'test_software_association',
5 'test_software_version',
6 'test_software_get_random_softwareid',
7]
8
9foreach t : testcases
10 test(
11 t,
12 executable(
13 t,
14 f'@t@.cpp',
15 include_directories: [
16 common_include,
17 '../device/',
18 ],
19 dependencies: [
20 libpldm_dep,
21 sdbusplus_dep,
22 phosphor_logging_dep,
23 gtest,
24 ],
25 link_with: [
26 libpldmutil,
27 software_common_lib,
28 libnopdevice,
29 ]
30 )
31 )
32endforeach
33