gstreamer/testsuite/meson.build

37 lines
1.2 KiB
Meson
Raw Normal View History

2016-11-03 11:36:23 +00:00
runtests = find_program('runtests.py')
tests = [
['Test gst', 'test_gst.py'],
['Test fractions', 'test_fraction.py'],
['Test integer ranges', 'test_intrange.py'],
['Test 64bit integer ranges', 'test_int64range.py'],
['Test double ranges', 'test_doublerange.py'],
['Test fraction ranges', 'test_fractionrange.py'],
['Test value arrays', 'test_valuearray.py'],
['Test value lists', 'test_valuelist.py']
2016-11-03 11:36:23 +00:00
]
pluginsdirs = []
if not meson.is_subproject()
pkgconfig = find_program('pkg-config')
runcmd = run_command(pkgconfig, '--variable=pluginsdir',
'gstreamer-' + api_version)
if runcmd.returncode() == 0
pluginsdirs = runcmd.stdout().split()
else
error('Could not determine GStreamer core plugins directory for unit tests.')
endif
endif
foreach i: tests
test_name = i.get(0)
env = environment()
env.set('GST_PLUGIN_PATH_1_0', meson.build_root())
env.set('GST_PLUGIN_SYSTEM_PATH_1_0', '')
foreach plugindir: pluginsdirs
env.append('GST_PLUGIN_PATH_1_0', plugindir)
endforeach
env.set('GST_REGISTRY', '@0@/@1@.registry'.format(meson.current_build_dir(), i.get(1)))
test(test_name, runtests, args: [i.get(1)], env: env)
endforeach