default: esd is obsolete, hence don't load it anymore by default
[pulseaudio-mirror.git] / src / tests / cpulimit-test.c
blob8bd03417a9a718fd438f59d3fb469147f6f6a441
1 /***
2 This file is part of PulseAudio.
4 PulseAudio is free software; you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as
6 published by the Free Software Foundation; either version 2.1 of the
7 License, or (at your option) any later version.
9 PulseAudio is distributed in the hope that it will be useful, but
10 WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with PulseAudio; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
17 USA.
18 ***/
20 #ifdef HAVE_CONFIG_H
21 #include <config.h>
22 #endif
24 #include <assert.h>
25 #include <time.h>
26 #include <stdlib.h>
27 #include <stdio.h>
28 #include <signal.h>
30 #include <pulse/mainloop.h>
32 #ifdef TEST2
33 #include <pulse/mainloop-signal.h>
34 #endif
36 #include <daemon/cpulimit.h>
38 /* A simple example for testing the cpulimit subsystem */
40 static time_t start;
42 #ifdef TEST2
44 static void func(pa_mainloop_api *m, pa_signal_event *e, int sig, void *userdata) {
45 time_t now;
46 time(&now);
48 if ((now - start) >= 30) {
49 m->quit(m, 1);
50 fprintf(stderr, "Test failed\n");
51 } else
52 raise(SIGUSR1);
55 #endif
57 int main(int argc, char *argv[]) {
58 pa_mainloop *m;
60 m = pa_mainloop_new();
61 assert(m);
63 pa_cpu_limit_init(pa_mainloop_get_api(m));
65 time(&start);
67 #ifdef TEST2
68 pa_signal_init(pa_mainloop_get_api(m));
69 pa_signal_new(SIGUSR1, func, NULL);
70 raise(SIGUSR1);
71 pa_mainloop_run(m, NULL);
72 pa_signal_done();
73 #else
74 for (;;) {
75 time_t now;
76 time(&now);
78 if ((now - start) >= 30) {
79 fprintf(stderr, "Test failed\n");
80 break;
83 #endif
85 pa_cpu_limit_done();
87 pa_mainloop_free(m);
89 return 0;