forked from gentoo-utils/gentoo-utils
19 lines
326 B
Meson
19 lines
326 B
Meson
tests = {}
|
|
|
|
subdir('porthole')
|
|
|
|
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
|