chiark / gitweb /
More schedule code testing; fix C interface.
[disorder] / lib / t-event.c
CommitLineData
3af7813d
RK
1/*
2 * This file is part of DisOrder.
3 * Copyright (C) 2008 Richard Kettlewell
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 * USA
19 */
20#include "test.h"
21#include "event.h"
22
23#include <time.h>
24
25static ev_source *ev;
26
27static int run1, run2, run3;
28static ev_timeout_handle t1, t2, t3;
29
30static int callback1(ev_source attribute((unused)) *ev,
31 const struct timeval attribute((unused)) *now,
32 void attribute((unused)) *u) {
33 run1 = 1;
34 ev_timeout_cancel(ev, t2);
35 return 0;
36}
37
38static int callback2(ev_source attribute((unused)) *ev,
39 const struct timeval attribute((unused)) *now,
40 void attribute((unused)) *u) {
41 run2 = 1;
42 return 0;
43}
44
45static int callback3(ev_source attribute((unused)) *ev,
46 const struct timeval attribute((unused)) *now,
47 void attribute((unused)) *u) {
48 run3 = 1;
49 return 1;
50}
51
52static void test_event(void) {
53 struct timeval w;
54
55 ev = ev_new();
56 w.tv_sec = time(0) + 2;
57 w.tv_usec = 0;
58 ev_timeout(ev, &t1, &w, callback1, 0);
59 w.tv_sec = time(0) + 3;
60 w.tv_usec = 0;
61 ev_timeout(ev, &t2, &w, callback2, 0);
62 w.tv_sec = time(0) + 4;
63 w.tv_usec = 0;
64 ev_timeout(ev, &t3, &w, callback3, 0);
65 check_integer(ev_run(ev), 1);
66 check_integer(run1, 1);
67 check_integer(run2, 0);
68 check_integer(run3, 1);
69}
70
71TEST(event);
72
73/*
74Local Variables:
75c-basic-offset:2
76comment-column:40
77fill-column:79
78indent-tabs-mode:nil
79End:
80*/