summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2015-08-08 15:01:27 +0200
committerBehdad Esfahbod <behdad@behdad.org>2015-08-08 16:14:36 +0200
commite8e825e5ac38384687635e86c2389a0790a3349e (patch)
tree1dc7729c621e6ba6cf9642758be8c75c92044493
parent7aa0aa0aabaf08e2500b7e267010a42d36918ce9 (diff)
downloadpango-e8e825e5ac38384687635e86c2389a0790a3349e.tar.gz
Minor
-rw-r--r--tests/testiter.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/tests/testiter.c b/tests/testiter.c
index 773e4bc0..4e70ce49 100644
--- a/tests/testiter.c
+++ b/tests/testiter.c
@@ -32,8 +32,6 @@
#include <pango/pangocairo.h>
-#undef VERBOSE
-
static void verbose (const char *format, ...) G_GNUC_PRINTF (1, 2);
static void
verbose (const char *format, ...)
@@ -70,9 +68,14 @@ const char *test_texts[] =
"AAAA\nBBBB\nCCCC\n",
"DDDD\rEEEE\rFFFF\r",
"GGGG\r\nHHHH\r\nIIII\r\n",
+ "asdf",
NULL
};
+/* char iteration test:
+ * - Total num of iterations match number of chars
+ * - GlyphString's index_to_x positions match those returned by the Iter
+ */
static void
iter_char_test (PangoLayout *layout)
{
@@ -154,10 +157,6 @@ iter_char_test (PangoLayout *layout)
pango_layout_iter_free (iter);
}
-/* char iteration test:
- * - Total num of iterations match number of chars
- * - GlyphString's index_to_x positions match those returned by the Iter
- */
static void
iter_cluster_test (PangoLayout *layout)
{