svn path=/trunk/; revision=7180
+2008-07-14 Matthias Clasen <mclasen@redhat.com>
+
+ Bug 467707 – test_iconv_state() in tests/convert-test.c fails on AIX 5.3
+
+ * tests/convert-test.c (test_iconv_state): Skip this test if
+ CP1255 is not supported.
+
2008-07-10 Ryan Lortie <desrt@desrt.ca>
* docs/reference/glib/glib-sections.txt:
out = g_convert (in, -1, "UTF-8", "CP1255",
&bytes_read, &bytes_written, &error);
-
+
+ if (error && error->code == G_CONVERT_ERROR_NO_CONVERSION)
+ return; /* silently skip if CP1255 is not supported, see bug 467707 */
+
g_assert (error == NULL);
g_assert (bytes_read == 5);
g_assert (bytes_written == 10);