blob: a41c2f62d7ff5b09aaed29342a14fa586125ec9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
project('test_slice')
python = import('python').find_installation('python3')
foreach i : range(10)
test('test-' + (i + 1).to_string(),
python,
args: [
meson.current_source_dir() / 'test.py'
],
)
endforeach
|