Files
gentoo-utils/tests/meson.build
2025-11-29 20:50:59 +00:00

22 lines
379 B
Meson

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