From 73ffa9034f80ff08c30ff519984b5d00894c63c6 Mon Sep 17 00:00:00 2001 From: Will Thompson Date: Wed, 16 Feb 2011 10:48:22 +0000 Subject: Test g_parse_debug_string ("all") https://bugzilla.gnome.org/show_bug.cgi?id=642452 --- tests/testglib.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/testglib.c b/tests/testglib.c index 1f0a9abea..35c95730f 100644 --- a/tests/testglib.c +++ b/tests/testglib.c @@ -514,7 +514,7 @@ test_g_parse_debug_string (void) { "bar", 2 }, { "baz", 4 } }; - guint n_keys = 3; + guint n_keys = G_N_ELEMENTS (keys); guint result; result = g_parse_debug_string ("bar:foo:blubb", keys, n_keys); @@ -528,6 +528,9 @@ test_g_parse_debug_string (void) result = g_parse_debug_string (" : ", keys, n_keys); g_assert (result == 0); + + result = g_parse_debug_string ("all", keys, n_keys); + g_assert_cmpuint (result, ==, (1 << n_keys) - 1); } static void -- cgit v1.2.1