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: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1240>
This commit is contained in:
Matthew Waters 2020-05-04 14:39:45 +10:00 committed by GStreamer Merge Bot
parent 5ece17ecbd
commit a2b0c81900

View file

@ -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