--- a/libpurple/tests/test_notification.c Thu Mar 23 22:49:23 2023 -0500 +++ b/libpurple/tests/test_notification.c Thu Mar 23 23:11:59 2023 -0500 @@ -148,6 +148,8 @@ *****************************************************************************/ gint main(gint argc, gchar *argv[]) { + gint ret = 0; + g_test_init(&argc, &argv, NULL); test_ui_purple_init(); @@ -159,5 +161,9 @@ g_test_add_func("/notification/properties", test_purple_notification_properties); - return g_test_run(); + ret = g_test_run(); + + test_ui_purple_uninit(); + + return ret; }