Files
gentoo-utils-gitea/tests/meson.build
John Turner b41593eb0b
All checks were successful
Gentoo Utils / build-oci-image (pull_request) Successful in 11s
Gentoo Utils / build (pull_request) Successful in 40s
impl profile evaluation
2025-12-09 21:50:30 +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