diff options
author | Matthias Clasen <mclasen@redhat.com> | 2014-09-21 16:29:48 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2014-09-21 16:34:33 -0400 |
commit | b5a390058834a2100eb48d55be7b5828f3da9b6b (patch) | |
tree | 81275e7edecb0ab79600a86cba1fad4322ceacdd | |
parent | df8a68865695a4bd8b8a261d2998e2041c9ea872 (diff) | |
download | gtk+-b5a390058834a2100eb48d55be7b5828f3da9b6b.tar.gz |
check-icon-theme: Print the name of the icon-theme
-rw-r--r-- | testsuite/gtk/check-icon-names.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testsuite/gtk/check-icon-names.c b/testsuite/gtk/check-icon-names.c index 158ffd259f..3916c81688 100644 --- a/testsuite/gtk/check-icon-names.c +++ b/testsuite/gtk/check-icon-names.c @@ -164,9 +164,14 @@ main (int argc, char *argv[]) { guint i; char *test_name; + char *theme; gtk_test_init (&argc, &argv); + g_object_get (gtk_settings_get_default (), "gtk-icon-theme-name", &theme, NULL); + g_test_message ("Testing icon theme: %s", theme); + g_free (theme); + for (i = 0; i < G_N_ELEMENTS (icon_names); i++) { test_name = g_strdup_printf ("/check-icon-names/%s", icon_names[i]); |