summaryrefslogtreecommitdiff
path: root/tests/meson.build
blob: 560a7251dc3c9c78c39ef375e30e0b10d1f7a54b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# meson.build
#
# Author: Victor Toso <me@victortoso.com>
#
# Copyright (C) 2018 Grilo Project

tests = [
    'autoptr',
    'lib-net',
    'media',
    'registry',
    'operations',
]

foreach t: tests
    source = t + '.c'
    exe = executable(t,
        source,
        install: false,
        link_with: [libgrl, libgrlnet],
        dependencies: [libgrl_dep, libgrlnet_dep])
    test(t, exe, timeout:10)
endforeach