summaryrefslogtreecommitdiff
path: root/tests/meson.build
blob: 09e1e8bb31f4b8b7db5e44315c7f5c31ef93530a (plain)
1
2
3
4
5
6
7
8
9
10
11
functional = executable('test-functional',
                        ['test-functional.c', 'test-util.c'],
                        dependencies : gssdp)

regression = executable('test-regression',
                        ['test-regression.c', 'test-util.c'],
                        dependencies : gssdp)

# Cannot run tests in parallel because both would do UPnP on localhost
test('Functional test', functional, is_parallel: false)
test('Bug regression test', regression, is_parallel: false)