1 | #include <stdlib.h> |
---|
2 | #include <glib.h> |
---|
3 | #include <gmodule.h> |
---|
4 | #include <check.h> |
---|
5 | #include "bitlbee.h" |
---|
6 | #include "testsuite.h" |
---|
7 | |
---|
8 | global_t global; /* Against global namespace pollution */ |
---|
9 | |
---|
10 | gboolean g_io_channel_pair(GIOChannel **ch1, GIOChannel **ch2) |
---|
11 | { |
---|
12 | int sock[2]; |
---|
13 | if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNIX, sock) < 0) { |
---|
14 | perror("socketpair"); |
---|
15 | return FALSE; |
---|
16 | } |
---|
17 | |
---|
18 | *ch1 = g_io_channel_unix_new(sock[0]); |
---|
19 | *ch2 = g_io_channel_unix_new(sock[1]); |
---|
20 | return TRUE; |
---|
21 | } |
---|
22 | |
---|
23 | double gettime() |
---|
24 | { |
---|
25 | struct timeval time[1]; |
---|
26 | |
---|
27 | gettimeofday( time, 0 ); |
---|
28 | return( (double) time->tv_sec + (double) time->tv_usec / 1000000 ); |
---|
29 | } |
---|
30 | |
---|
31 | /* From check_util.c */ |
---|
32 | Suite *util_suite(void); |
---|
33 | |
---|
34 | /* From check_nick.c */ |
---|
35 | Suite *nick_suite(void); |
---|
36 | |
---|
37 | /* From check_md5.c */ |
---|
38 | Suite *md5_suite(void); |
---|
39 | |
---|
40 | int main (int argc, char **argv) |
---|
41 | { |
---|
42 | int nf; |
---|
43 | SRunner *sr; |
---|
44 | GOptionContext *pc; |
---|
45 | gboolean no_fork = FALSE; |
---|
46 | gboolean verbose = FALSE; |
---|
47 | GOptionEntry options[] = { |
---|
48 | {"no-fork", 'n', 0, G_OPTION_ARG_NONE, &no_fork, "Don't fork" }, |
---|
49 | {"verbose", 'v', 0, G_OPTION_ARG_NONE, &verbose, "Be verbose", NULL }, |
---|
50 | { NULL } |
---|
51 | }; |
---|
52 | int i; |
---|
53 | |
---|
54 | pc = g_option_context_new(""); |
---|
55 | g_option_context_add_main_entries(pc, options, NULL); |
---|
56 | |
---|
57 | if(!g_option_context_parse(pc, &argc, &argv, NULL)) |
---|
58 | return 1; |
---|
59 | |
---|
60 | g_option_context_free(pc); |
---|
61 | |
---|
62 | |
---|
63 | sr = srunner_create(util_suite()); |
---|
64 | srunner_add_suite(sr, nick_suite()); |
---|
65 | srunner_add_suite(sr, md5_suite()); |
---|
66 | if (no_fork) |
---|
67 | srunner_set_fork_status(sr, CK_NOFORK); |
---|
68 | srunner_run_all (sr, verbose?CK_VERBOSE:CK_NORMAL); |
---|
69 | nf = srunner_ntests_failed(sr); |
---|
70 | srunner_free(sr); |
---|
71 | return (nf == 0) ? EXIT_SUCCESS : EXIT_FAILURE; |
---|
72 | } |
---|