blob: 6cee9fe75a52ba9060bc49e5d9ce1e3c717be207 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
externaltools_tests = {
'LinkParser': files('testlinkparsing.py'),
}
externaltools_srcdir = join_paths(
srcdir,
'plugins',
'externaltools',
'tools',
)
foreach test_name, test_script : externaltools_tests
test(
'test-externaltools-@0@'.format(test_name),
python3,
args: [test_script],
env: [
'PYTHONPATH=@0@'.format(externaltools_srcdir),
]
)
endforeach
|