xref: /openbmc/sdbusplus/test/async/meson.build (revision 7c0fb15f6bca1fb107d4c55006a5eed9bd82b325)
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