summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2014-03-09 12:43:16 -0400
committerDan Winship <danw@gnome.org>2014-03-09 13:02:06 -0400
commit96279397f976a3bf2568373e9baafb915e47c4d3 (patch)
tree5b1fe9c834d3e7773090167e1dd847b8e0506dc2
parent76cd3dcd6a3eb621cf4976457c9d1b2ab9c0e468 (diff)
downloadlibsoup-96279397f976a3bf2568373e9baafb915e47c4d3.tar.gz
xmlrpc-test: use g_test_skip()
There was a comment about not using g_test_skip() here because of an old glib bug, but we're using g_test_skip() in lots of other places now, so...
-rw-r--r--tests/xmlrpc-test.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/xmlrpc-test.c b/tests/xmlrpc-test.c
index 46eee266..15623a60 100644
--- a/tests/xmlrpc-test.c
+++ b/tests/xmlrpc-test.c
@@ -373,10 +373,7 @@ test_echo (void)
for (i = 0; i < echoes->n_values; i++) {
if (!server_test && strcmp (echo_strings_broken[i], g_value_get_string (&echoes->values[i])) == 0) {
- /* We want to call g_test_skip(), but as of glib 2.38
- * that marks the test as failed rather than succeeded.
- */
- // FIXME g_test_skip ("PHP bug");
+ g_test_skip ("PHP bug");
g_value_array_free (echoes);
return;
}