blob: 3d3126dd5ea67e3ab2aa80a80e9e2682b0f09118 [file] [log] [blame]
Patrick Williams516e22f2025-02-01 08:37:12 -05001test(
2 'phosphor-power-sequencer-tests',
3 executable(
4 'phosphor-power-sequencer-tests',
Shawn McCarney8a8a6802025-10-30 23:16:16 -05005 'chassis_tests.cpp',
Patrick Williams516e22f2025-02-01 08:37:12 -05006 'config_file_parser_error_tests.cpp',
7 'config_file_parser_tests.cpp',
8 'pmbus_driver_device_tests.cpp',
9 'rail_tests.cpp',
10 'standard_device_tests.cpp',
11 'ucd90160_device_tests.cpp',
12 'ucd90320_device_tests.cpp',
13 'ucd90x_device_tests.cpp',
14 dependencies: [gmock, gtest, nlohmann_json_dep, phosphor_logging],
15 link_args: dynamic_linker,
16 build_rpath: get_option('oe-sdk').allowed() ? rpath : '',
17 link_with: [phosphor_power_sequencer_library, libpower],
18 implicit_include_directories: false,
19 include_directories: ['.', '../src', '../..'],
20 ),
Shawn McCarneyd6e9bfe2024-01-05 17:52:04 -060021)