mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
765cf8679f
The path passed to --validate-tools-path was wrong when building using gst-build, preventing the launcher to find the validate tools. https://bugzilla.gnome.org/show_bug.cgi?id=777982 Differential Revision: https://phabricator.freedesktop.org/D1634
19 lines
813 B
Meson
19 lines
813 B
Meson
env = environment()
|
|
env.set('GST_PLUGIN_SYSTEM_PATH_1_0', '')
|
|
env.set('GST_PLUGIN_PATH_1_0', meson.build_root())
|
|
if not meson.is_subproject()
|
|
env.append('GST_PLUGIN_PATH_1_0', gst_dep.get_pkgconfig_variable('pluginsdir'))
|
|
|
|
gst_plugins_base_dep = dependency('gstreamer-plugins-base-1.0')
|
|
env.append('GST_PLUGIN_PATH_1_0', gst_plugins_base_dep.get_pkgconfig_variable('pluginsdir'))
|
|
endif
|
|
|
|
if launcher.found()
|
|
test_name = 'validate/launcher_tests'
|
|
env.set('GST_REGISTRY', '@0@/@1@.registry'.format(meson.current_build_dir(), test_name))
|
|
|
|
test(test_name, launcher, args: ['-o', meson.build_root() + '/validate-launcher-output/',
|
|
meson.current_source_dir() + '/test_validate.py', '--validate-tools-path',
|
|
join_paths(meson.current_build_dir(), '..', '..', 'tools')],
|
|
env: env)
|
|
endif
|