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

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