From a2b0c81900a3e4d37b505f0adac30f92aceb2bcf Mon Sep 17 00:00:00 2001 From: Matthew Waters Date: Mon, 4 May 2020 14:39:45 +1000 Subject: [PATCH] tests: add libnice to the plugin loading whitelist Allows webrtcbin to actually unit test some negotiation scenarios. Without this, only two of the possible 33 tests are being executed. Part-of: --- tests/check/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/check/meson.build b/tests/check/meson.build index 5869ca459d..1613a482c5 100644 --- a/tests/check/meson.build +++ b/tests/check/meson.build @@ -180,7 +180,7 @@ foreach t : base_tests env.set('GST_PLUGIN_PATH_1_0', [meson.build_root()] + pluginsdirs) env.set('GST_REGISTRY', join_paths(meson.current_build_dir(), '@0@.registry'.format(test_name))) env.set('GST_PLUGIN_LOADING_WHITELIST', 'gstreamer', 'gst-plugins-base', - 'gst-plugins-good', 'gst-plugins-ugly','gst-libav', + 'gst-plugins-good', 'gst-plugins-ugly','gst-libav', 'libnice', 'gst-plugins-bad@' + meson.build_root()) test(test_name, exe, env: env, timeout: 3 * 60) endif