1 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') 16