mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-03 09:01:50 -05:00
core-util-test: Add boilerplate
This commit is contained in:
parent
6f0e39d30f
commit
e1bc479110
3 changed files with 53 additions and 0 deletions
1
src/.gitignore
vendored
1
src/.gitignore
vendored
|
|
@ -35,6 +35,7 @@ asyncq-test
|
||||||
channelmap-test
|
channelmap-test
|
||||||
close-test
|
close-test
|
||||||
connect-stress
|
connect-stress
|
||||||
|
core-util-test
|
||||||
cpulimit-test
|
cpulimit-test
|
||||||
cpulimit-test2
|
cpulimit-test2
|
||||||
cpu-sconv-test
|
cpu-sconv-test
|
||||||
|
|
|
||||||
|
|
@ -240,6 +240,7 @@ endif
|
||||||
noinst_LTLIBRARIES =
|
noinst_LTLIBRARIES =
|
||||||
|
|
||||||
TESTS_default = \
|
TESTS_default = \
|
||||||
|
core-util-test \
|
||||||
mainloop-test \
|
mainloop-test \
|
||||||
strlist-test \
|
strlist-test \
|
||||||
close-test \
|
close-test \
|
||||||
|
|
@ -355,6 +356,11 @@ check-daemon:
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
core_util_test_SOURCES = tests/core-util-test.c
|
||||||
|
core_util_test_CFLAGS = $(AM_CFLAGS) $(LIBCHECK_CFLAGS)
|
||||||
|
core_util_test_LDADD = $(AM_LDADD) libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
||||||
|
core_util_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS) $(LIBCHECK_LIBS)
|
||||||
|
|
||||||
mainloop_test_SOURCES = tests/mainloop-test.c
|
mainloop_test_SOURCES = tests/mainloop-test.c
|
||||||
mainloop_test_CFLAGS = $(AM_CFLAGS) $(LIBCHECK_CFLAGS)
|
mainloop_test_CFLAGS = $(AM_CFLAGS) $(LIBCHECK_CFLAGS)
|
||||||
mainloop_test_LDADD = $(AM_LDADD) libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
mainloop_test_LDADD = $(AM_LDADD) libpulse.la libpulsecommon-@PA_MAJORMINOR@.la
|
||||||
|
|
|
||||||
46
src/tests/core-util-test.c
Normal file
46
src/tests/core-util-test.c
Normal file
|
|
@ -0,0 +1,46 @@
|
||||||
|
/***
|
||||||
|
This file is part of PulseAudio.
|
||||||
|
|
||||||
|
PulseAudio is free software; you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU Lesser General Public License as published
|
||||||
|
by the Free Software Foundation; either version 2.1 of the License,
|
||||||
|
or (at your option) any later version.
|
||||||
|
|
||||||
|
PulseAudio is distributed in the hope that it will be useful, but
|
||||||
|
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.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Lesser General Public License
|
||||||
|
along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
||||||
|
***/
|
||||||
|
|
||||||
|
#ifdef HAVE_CONFIG_H
|
||||||
|
#include <config.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <check.h>
|
||||||
|
|
||||||
|
#include <pulsecore/core-util.h>
|
||||||
|
|
||||||
|
int main(int argc, char *argv[]) {
|
||||||
|
int failed = 0;
|
||||||
|
Suite *s;
|
||||||
|
TCase *tc;
|
||||||
|
SRunner *sr;
|
||||||
|
|
||||||
|
if (!getenv("MAKE_CHECK"))
|
||||||
|
pa_log_set_level(PA_LOG_DEBUG);
|
||||||
|
|
||||||
|
s = suite_create("Core-Util");
|
||||||
|
|
||||||
|
tc = tcase_create("core-util");
|
||||||
|
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;
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue