blob: be9432a5929c3a71daf639b946c5af30e5aea7a7 [file] [log] [blame]
Alexander Hansen2cd25e62025-10-23 12:35:39 +02001timer_tests = [
2 'timer_callback_done',
3 'timer_callback_not_done',
4 'timer_expire',
5 'timer_not_expire',
6 'timer_update_expire',
7 'timer_update_not_expire',
8]
9
10foreach t : timer_tests
11 test(
12 'test_' + t.underscorify(),
13 executable(
14 'test-' + t.underscorify(),
15 t + '.cpp',
16 dependencies: [gtest_dep, gmock_dep, sdbusplus_dep],
17 ),
18 )
19endforeach