blob: d3edd656125dd54b6d9782143ce123e15542ec77 [file] [log] [blame]
Alexander Hansen2cd25e62025-10-23 12:35:39 +02001
2async_tests = ['context', 'fdio', 'mutex', 'task', 'timer', 'watchdog']
3
4foreach t : async_tests
5 test(
6 'test_' + t.underscorify(),
7 executable(
8 'test-' + t.underscorify(),
9 t + '.cpp',
10 dependencies: [gtest_dep, gmock_dep, sdbusplus_dep],
11 ),
12 )
13endforeach
14
15subdir('fdio_timed')