blob: 12f1affbc55d4e7756c1e30de8e50aec8ba691ed [file] [log] [blame]
Willy Tubcae9002021-09-12 13:58:04 -07001tool_tests = [
Patrick Williams32e9ea12025-02-01 08:37:51 -05002 'tools_bt',
3 'tools_lpc',
4 'tools_pci',
5 'tools_net',
6 'tools_updater',
7 'tools_helper',
8 'io',
Willy Tubcae9002021-09-12 13:58:04 -07009]
10
11foreach t : tool_tests
Patrick Williams32e9ea12025-02-01 08:37:51 -050012 test(
13 t,
14 executable(
15 t.underscorify(),
16 t + '_unittest.cpp',
17 build_by_default: false,
18 implicit_include_directories: false,
19 include_directories: [root_inc, tools_inc],
20 dependencies: [updater_dep, gtest, gmock],
21 ),
22 )
Willy Tubcae9002021-09-12 13:58:04 -070023endforeach