mirror of
https://jturnerusa.dev/cgit/gentoo-utils/
synced 2025-12-02 19:18:35 -06:00
22 lines
379 B
Meson
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
|