mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
Lowering log level to see why things fail on the p5 build bot; fix some typos in unit test messages.
Original commit message from CVS: * 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.
This commit is contained in:
parent
92c11d5d24
commit
7d78598f24
5 changed files with 15 additions and 6 deletions
|
@ -1,3 +1,12 @@
|
|||
2007-02-03 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* 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 <tim at centricular dot net>
|
||||
|
||||
* tests/check/libs/utils.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);
|
||||
}
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue