Files
gentoo-utils/tests/meson.build
2025-11-28 17:22:16 +00:00

20 lines
341 B
Meson

tests = {}
subdir('porthole')
subdir('repo')
foreach test, test_args : tests
name = fs.name(test)
test(
f'test_@name@',
executable(
f'test_@name@',
test,
dependencies: [mon, itertools],
link_with: [gentoo_utils],
),
args: test_args,
)
endforeach