Skip to content

Commit

Permalink
Fix Freeseer#647 Skip tests related to RTMP plugin for Windows
Browse files Browse the repository at this point in the history
Partly fix Freeseer#647.
The RTMP plugin is not included in GStreamer for Win32, so the test based on it can cause problems.
This fix will skip these tests.
  • Loading branch information
Cryspia committed Nov 30, 2014
1 parent 8dee0bb commit 8f7f6d3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/freeseer/tests/framework/test_plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,9 @@ def test_plugin_bin(plugin_manager, plugin_info, expected_instance):

for plugin in plugins:
plugin.plugin_object.load_config(plugin_manager)
if plugin.name == "RTMP Streaming" and sys.platform == "win32":
# FIXME: plugin error (gh#647): Skip the RTMP plugin test case because it does not support win32 platform
continue
if plugin.name == "Firewire Source": # FIXME: link error (gh#644, gh#141)
continue
plugin_bin = getattr(plugin.plugin_object, get_plugin_method)()
Expand Down

0 comments on commit 8f7f6d3

Please sign in to comment.