source: tests/check.c @ 2c7df62

Last change on this file since 2c7df62 was 1fc2958, checked in by Jelmer Vernooij <jelmer@…>, at 2006-06-16T12:07:51Z

Add checks for nick functions as well, fix bug where nick lengths weren't
being honored.

  • Property mode set to 100644
File size: 649 bytes
Line 
1#include <stdlib.h>
2#include <glib.h>
3#include <gmodule.h>
4#include <check.h>
5#include "bitlbee.h"
6
7global_t global;        /* Against global namespace pollution */
8
9double gettime()
10{
11        struct timeval time[1];
12
13        gettimeofday( time, 0 );
14        return( (double) time->tv_sec + (double) time->tv_usec / 1000000 );
15}
16
17/* From check_util.c */
18Suite *util_suite(void);
19
20/* From check_nick.c */
21Suite *nick_suite(void);
22
23int main (void)
24{
25        int nf;
26        SRunner *sr = srunner_create(util_suite());
27        srunner_add_suite(sr, nick_suite());
28        srunner_run_all (sr, CK_NORMAL);
29        nf = srunner_ntests_failed(sr);
30        srunner_free(sr);
31        return (nf == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
32}
Note: See TracBrowser for help on using the repository browser.