summaryrefslogtreecommitdiffstats
path: root/tests/meson.build
blob: 6b720d2e26f95662ca3b2e97ac0924616052b122 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
tests = [
    'test-149',
    'test-153',
    'test-161',
    'test-core-149',
    'test-file-write-regression',
    'test-nlm'
]

tiffinfo = find_program('tiffinfo', required : false)

if tiffinfo.found()
    tests += ['test-142']
endif

test_env = [
    'UFO_PLUGIN_PATH=@0@'.format(join_paths(meson.build_root(), 'src'))
]

foreach t: tests
    test(t, find_program('@0@.sh'.format(t)), env: test_env)
endforeach