Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/gst-plugins-good.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2020-06-09 17:21:25 +0300
committerTim-Philipp Müller <tim@centricular.com>2020-06-09 17:23:40 +0300
commitd654c6feae7927c5925ecc6b387e8aa989502934 (patch)
tree03a30e7f1ef104aeabbd6a23a6ed8b857451adea /tests
parent5b2ad3158363bc7ebcfac8601dbd13cc01c4ed88 (diff)
tests: don't pull in all -bad plugin, only allow the one we need
Set up our plugin include list for tests in such a way that we don't pull in *all* plugins from -bad but only the one used in the splitmuxsink unit test, i.e. the timecode plugin, so we don't accidentally use other encoders/decoders such as nvenc/dec for example. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/617>
Diffstat (limited to 'tests')
-rw-r--r--tests/check/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/check/meson.build b/tests/check/meson.build
index f4cb75717..17429463f 100644
--- a/tests/check/meson.build
+++ b/tests/check/meson.build
@@ -195,7 +195,7 @@ foreach t : good_tests
env.set('GST_STATE_IGNORE_ELEMENTS', state_ignore_elements)
env.set('CK_DEFAULT_TIMEOUT', '20')
env.set('GST_PLUGIN_LOADING_WHITELIST', 'gstreamer', 'gst-plugins-base',
- 'gst-plugins-bad', 'gst-plugins-good@' + meson.build_root())
+ 'timecode', 'gst-plugins-good@' + meson.build_root())
env.set('GST_PLUGIN_PATH_1_0', [meson.build_root()] + pluginsdirs)
env.set('GSETTINGS_BACKEND', 'memory')