1
2
#include <gtk/gtk.h>
3
4
#include <stdlib.h>
5
6
#include "check_libtinymailui.h"
7
8
#include <gtk/gtk.h>
9
10
int
11
main (void)
12
{
13
     int n;
14
     SRunner *sr;
15
16
     gtk_init (NULL, NULL);	/* Why doesn't this require gtk CFLAGS&LIBS? */
17
     g_thread_init (NULL);
18
19
     sr = srunner_create ((Suite *) create_tny_platform_factory_suite ());
20
21
     srunner_run_all (sr, CK_VERBOSE);
22
     n = srunner_ntests_failed (sr);
23
     srunner_free (sr);
24
     return (n == 0 ? EXIT_SUCCESS : EXIT_FAILURE);
25
}