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