From: Timm Bäder Date: Fri, 23 Mar 2018 12:55:01 +0000 (+0100) Subject: testsuite: Print tested property name in notify test X-Git-Tag: archive/raspbian/4.4.1+ds1-2+rpi1^2~18^2~22^2~45 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=33e113d607c6eff3d66dfe019c76fc7387d1b42a;p=gtk4.git testsuite: Print tested property name in notify test --- diff --git a/testsuite/gtk/notify.c b/testsuite/gtk/notify.c index 4c340c38de..a3eb23ebdc 100644 --- a/testsuite/gtk/notify.c +++ b/testsuite/gtk/notify.c @@ -44,6 +44,8 @@ count_notify (GObject *obj, GParamSpec *pspec, NotifyData *data) static void check_property (GObject *instance, GParamSpec *pspec) { + g_test_message ("Checking %s:%s", G_OBJECT_TYPE_NAME (instance), pspec->name); + if (G_TYPE_IS_ENUM (pspec->value_type)) { GEnumClass *class;