summaryrefslogtreecommitdiff
path: root/tests/meson.build
blob: d19391016c2f2ded76e1216e32b8ba0dd9aabe00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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