1 2async_tests = [ 3 'fdio_timed_write_async_with_timeout', 4 'fdio_timed_write_async_with_timeout_iterative', 5 'fdio_timed_write_skip_with_timeout', 6 'fdio_timed_write_sync', 7 'fdio_timed_write_sync_iterative', 8] 9 10foreach t : async_tests 11 test( 12 'test_' + t.underscorify(), 13 executable( 14 'test-' + t.underscorify(), 15 t + '.cpp', 16 'suite.cpp', 17 dependencies: [gtest_dep, gmock_dep, sdbusplus_dep], 18 ), 19 ) 20endforeach 21