| Alexander Hansen | 2cd25e6 | 2025-10-23 12:35:39 +0200 | [diff] [blame^] | 1 | |
| 2 | async_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 | |||||
| 10 | foreach 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 | ) | ||||
| 20 | endforeach | ||||