blob: 8ba06e815f65c4eac2f781db53effc46241e5954 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
tests = {}
subdir('porthole')
subdir('repo')
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,
)
endforeach
|