blob: 475f7980e2bc83c3146ab0006d99aa7f7fac3021 [file] [log] [blame]
Patrick Williams32e9ea12025-02-01 08:37:51 -05001log_tests = ['canhandle_enumerate', 'createhandler']
Gaurav Gandhia49a3f72021-10-26 20:43:25 +00002
3foreach t : log_tests
Patrick Williams32e9ea12025-02-01 08:37:51 -05004 test(
5 t,
6 executable(
7 t.underscorify(),
8 'log_' + t + '_unittest.cpp',
9 build_by_default: false,
10 implicit_include_directories: false,
11 include_directories: [root_inc, bmc_test_inc, log_inc],
12 dependencies: [log_dep, blobs_dep, gtest, gmock],
13 ),
14 )
Gaurav Gandhia49a3f72021-10-26 20:43:25 +000015endforeach