blob: 0bdbfb2f6f62c4b9e68eac3cf9e38641eae1d3a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
tests = [
'parseopts_test.sh',
'makepkg-template_test.sh',
'human_to_size_test.sh',
]
foreach tst : tests
test(tst,
PYTHON,
env : TEST_ENV,
args : [
join_paths(meson.source_root(), 'build-aux/tap-driver.py'),
join_paths(meson.current_source_dir(), tst),
])
endforeach
|