1project('subproject test suites', 'c')
2
3sub1 = executable('sub1', 'sub1.c')
4sub2 = executable('sub2', 'sub2.c')
5
6test('sub1', sub1)
7test('sub2', sub2, suite : 'suite2')
8