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:
Tim-Philipp Müller 2007-02-03 14:26:54 +00:00
parent 92c11d5d24
commit 7d78598f24
5 changed files with 15 additions and 6 deletions

View file

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

View file

@ -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);
}

View file

@ -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);
}

View file

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

View file

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