From 92215f2f37d23a78319999b46f2a825d6b54d507 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Wed, 27 May 2020 17:32:02 +0100 Subject: [PATCH] tests: gst-plugins-base and -bad plugins are required for the unit tests Make hard requirement until we have more fine-grained control in the unit tests. Of course the presence of the .pc file doesn't imply that the plugins we need are actually there, but it's at least a step in the right direction. Part-of: --- tests/check/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/check/meson.build b/tests/check/meson.build index 0c20c6f85d..c382400940 100644 --- a/tests/check/meson.build +++ b/tests/check/meson.build @@ -1,7 +1,7 @@ pluginsdirs = [] if gst_dep.type_name() == 'pkgconfig' - pbase = dependency('gstreamer-plugins-base-' + api_version, required : false) - pbad = dependency('gstreamer-plugins-bad-' + api_version, required : false) + pbase = dependency('gstreamer-plugins-base-' + api_version, required: true) + pbad = dependency('gstreamer-plugins-bad-' + api_version, required: true) pluginsdirs = [gst_dep.get_pkgconfig_variable('pluginsdir'), pbase.get_pkgconfig_variable('pluginsdir'),