diff --git a/ChangeLog b/ChangeLog index 0e753d3cd2..5757f86966 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2007-02-03 Tim-Philipp Müller + + * gst-libs/gst/utils/install-plugins.c: + (gst_install_plugins_spawn_child): + * tests/check/libs/utils.c: + (test_base_utils_install_plugins_do_callout): + Lowering log level to see why things fail on the p5 build bot; + fix some typos in unit test messages. + 2007-02-03 Tim-Philipp Müller * tests/check/libs/utils.c: diff --git a/gst-libs/gst/pbutils/install-plugins.c b/gst-libs/gst/pbutils/install-plugins.c index ac23975de9..805ad36531 100644 --- a/gst-libs/gst/pbutils/install-plugins.c +++ b/gst-libs/gst/pbutils/install-plugins.c @@ -177,7 +177,7 @@ gst_install_plugins_spawn_child (gchar ** details, } if (!ret) { - GST_WARNING ("Error spawning plugin install helper: %s", err->message); + GST_ERROR ("Error spawning plugin install helper: %s", err->message); g_error_free (err); } diff --git a/gst-libs/gst/utils/install-plugins.c b/gst-libs/gst/utils/install-plugins.c index ac23975de9..805ad36531 100644 --- a/gst-libs/gst/utils/install-plugins.c +++ b/gst-libs/gst/utils/install-plugins.c @@ -177,7 +177,7 @@ gst_install_plugins_spawn_child (gchar ** details, } if (!ret) { - GST_WARNING ("Error spawning plugin install helper: %s", err->message); + GST_ERROR ("Error spawning plugin install helper: %s", err->message); g_error_free (err); } diff --git a/tests/check/libs/pbutils.c b/tests/check/libs/pbutils.c index 89e7ab37ab..a90725c52d 100644 --- a/tests/check/libs/pbutils.c +++ b/tests/check/libs/pbutils.c @@ -506,8 +506,8 @@ test_base_utils_install_plugins_do_callout (gchar ** details, ret = gst_install_plugins_sync (details, ctx); fail_unless (ret == GST_INSTALL_PLUGINS_HELPER_MISSING || ret == expected_result, - "gst_install_plugins_sync() failed with unexpected ret %d, which is" - "neither HELPER_MISSING NOR %d", ret, expected_result); + "gst_install_plugins_sync() failed with unexpected ret %d, which is " + "neither HELPER_MISSING nor %d", ret, expected_result); /* test async callout */ marker = -333; diff --git a/tests/check/libs/utils.c b/tests/check/libs/utils.c index 89e7ab37ab..a90725c52d 100644 --- a/tests/check/libs/utils.c +++ b/tests/check/libs/utils.c @@ -506,8 +506,8 @@ test_base_utils_install_plugins_do_callout (gchar ** details, ret = gst_install_plugins_sync (details, ctx); fail_unless (ret == GST_INSTALL_PLUGINS_HELPER_MISSING || ret == expected_result, - "gst_install_plugins_sync() failed with unexpected ret %d, which is" - "neither HELPER_MISSING NOR %d", ret, expected_result); + "gst_install_plugins_sync() failed with unexpected ret %d, which is " + "neither HELPER_MISSING nor %d", ret, expected_result); /* test async callout */ marker = -333;