2004-09-03 20:14:23 +00:00
|
|
|
/***
|
2006-06-19 21:53:48 +00:00
|
|
|
This file is part of PulseAudio.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
2004-11-21 21:31:28 +00:00
|
|
|
it under the terms of the GNU Lesser General Public License as
|
2009-03-03 20:23:02 +00:00
|
|
|
published by the Free Software Foundation; either version 2.1 of the
|
2004-11-21 21:31:28 +00:00
|
|
|
License, or (at your option) any later version.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
2004-09-03 20:14:23 +00:00
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
General Public License for more details.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-11-21 21:31:28 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2006-06-19 21:53:48 +00:00
|
|
|
License along with PulseAudio; if not, write to the Free Software
|
2004-09-03 20:14:23 +00:00
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
2004-11-21 21:31:28 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2004-09-03 20:14:23 +00:00
|
|
|
#include <assert.h>
|
2011-03-01 18:06:28 +01:00
|
|
|
#include <time.h>
|
2004-09-03 20:14:23 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <signal.h>
|
|
|
|
|
|
2012-07-28 21:34:58 +08:00
|
|
|
#include <check.h>
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulse/mainloop.h>
|
2004-09-03 20:14:23 +00:00
|
|
|
|
|
|
|
|
#ifdef TEST2
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulse/mainloop-signal.h>
|
2004-09-03 20:14:23 +00:00
|
|
|
#endif
|
|
|
|
|
|
2011-03-09 10:00:20 +01:00
|
|
|
#include <daemon/cpulimit.h>
|
2006-02-17 12:10:58 +00:00
|
|
|
|
2004-11-21 21:31:28 +00:00
|
|
|
/* A simple example for testing the cpulimit subsystem */
|
|
|
|
|
|
2004-09-03 20:14:23 +00:00
|
|
|
static time_t start;
|
|
|
|
|
|
|
|
|
|
#ifdef TEST2
|
|
|
|
|
|
2008-08-09 16:20:29 +02:00
|
|
|
static void func(pa_mainloop_api *m, pa_signal_event *e, int sig, void *userdata) {
|
2004-09-03 20:14:23 +00:00
|
|
|
time_t now;
|
|
|
|
|
time(&now);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-09-03 20:14:23 +00:00
|
|
|
if ((now - start) >= 30) {
|
|
|
|
|
m->quit(m, 1);
|
|
|
|
|
fprintf(stderr, "Test failed\n");
|
2012-07-28 21:34:58 +08:00
|
|
|
fail();
|
2004-09-03 20:14:23 +00:00
|
|
|
} else
|
|
|
|
|
raise(SIGUSR1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
2012-07-28 21:34:58 +08:00
|
|
|
START_TEST (cpulimit_test) {
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_mainloop *m;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-09-03 20:14:23 +00:00
|
|
|
m = pa_mainloop_new();
|
2012-07-28 21:34:58 +08:00
|
|
|
fail_unless(m != NULL);
|
2004-09-03 20:14:23 +00:00
|
|
|
|
|
|
|
|
pa_cpu_limit_init(pa_mainloop_get_api(m));
|
|
|
|
|
|
|
|
|
|
time(&start);
|
|
|
|
|
|
|
|
|
|
#ifdef TEST2
|
|
|
|
|
pa_signal_init(pa_mainloop_get_api(m));
|
|
|
|
|
pa_signal_new(SIGUSR1, func, NULL);
|
|
|
|
|
raise(SIGUSR1);
|
|
|
|
|
pa_mainloop_run(m, NULL);
|
|
|
|
|
pa_signal_done();
|
|
|
|
|
#else
|
|
|
|
|
for (;;) {
|
|
|
|
|
time_t now;
|
|
|
|
|
time(&now);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-09-03 20:14:23 +00:00
|
|
|
if ((now - start) >= 30) {
|
|
|
|
|
fprintf(stderr, "Test failed\n");
|
2012-07-28 21:34:58 +08:00
|
|
|
fail();
|
2004-09-03 20:14:23 +00:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
pa_cpu_limit_done();
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-09-03 20:14:23 +00:00
|
|
|
pa_mainloop_free(m);
|
2012-07-28 21:34:58 +08:00
|
|
|
}
|
|
|
|
|
END_TEST
|
2004-09-16 23:34:25 +00:00
|
|
|
|
2012-07-28 21:34:58 +08:00
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
|
int failed = 0;
|
|
|
|
|
Suite *s;
|
|
|
|
|
TCase *tc;
|
|
|
|
|
SRunner *sr;
|
|
|
|
|
|
|
|
|
|
s = suite_create("CPU Limit");
|
|
|
|
|
tc = tcase_create("cpulimit");
|
|
|
|
|
tcase_add_test(tc, cpulimit_test);
|
|
|
|
|
suite_add_tcase(s, tc);
|
|
|
|
|
|
|
|
|
|
sr = srunner_create(s);
|
|
|
|
|
srunner_run_all(sr, CK_NORMAL);
|
|
|
|
|
failed = srunner_ntests_failed(sr);
|
|
|
|
|
srunner_free(sr);
|
|
|
|
|
|
|
|
|
|
return (failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
|
2004-09-03 20:14:23 +00:00
|
|
|
}
|