Pull all tests together into one binary

Easier to monitor gcov coverage that way

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Peter Hutterer 2013-06-27 09:40:23 +10:00
parent 32f86f97f6
commit 9e81874c49
6 changed files with 54 additions and 58 deletions

View file

@ -1,4 +1,4 @@
noinst_PROGRAMS = test-event-names test-libevdev-init test-libevdev-has-event test-int-queue
noinst_PROGRAMS = test-libevdev
TESTS = $(noinst_PROGRAMS)
@ -11,19 +11,15 @@ common_sources = $(libevdev_sources) test-common-uinput.c test-common-uinput.h
# include builddir for event-names.h
AM_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir)/libevdev $(CHECK_CFLAGS) $(GCOV_CFLAGS)
test_libevdev_SOURCES = \
test-main.c \
test-event-names.c \
test-libevdev-init.c \
test-libevdev-has-event.c \
test-int-queue.c \
$(common_sources)
test_event_names_SOURCES = test-event-names.c $(common_sources)
test_event_names_LDADD = $(CHECK_LIBS) $(GCOV_LDFLAGS)
test_libevdev_init_SOURCES = test-libevdev-init.c $(common_sources)
test_libevdev_init_LDADD = $(CHECK_LIBS) $(GCOV_LDFLAGS)
test_libevdev_has_event_SOURCES = test-libevdev-has-event.c $(common_sources)
test_libevdev_has_event_LDADD = $(CHECK_LIBS) $(GCOV_LDFLAGS)
test_int_queue_SOURCES = test-int-queue.c $(common_sources)
test_int_queue_LDADD = $(CHECK_LIBS) $(GCOV_LDFLAGS)
test_libevdev_LDADD = $(CHECK_LIBS) $(GCOV_LDFLAGS)
if GCOV_ENABLED

View file

@ -248,14 +248,3 @@ event_name_suite(void)
return s;
}
int main(int argc, char **argv)
{
int failed;
Suite *s = event_name_suite();
SRunner *sr = srunner_create(s);
srunner_run_all(sr, CK_NORMAL);
failed = srunner_ntests_failed(sr);
srunner_free(sr);
return failed;
}

View file

@ -358,14 +358,3 @@ queue_suite(void)
return s;
}
int main(int argc, char **argv)
{
int failed;
Suite *s = queue_suite();
SRunner *sr = srunner_create(s);
srunner_run_all(sr, CK_NORMAL);
failed = srunner_ntests_failed(sr);
srunner_free(sr);
return failed;
}

View file

@ -286,14 +286,3 @@ libevdev_has_event_test(void)
return s;
}
int main(int argc, char **argv)
{
int failed;
Suite *s = libevdev_has_event_test();
SRunner *sr = srunner_create(s);
srunner_run_all(sr, CK_NORMAL);
failed = srunner_ntests_failed(sr);
srunner_free(sr);
return failed;
}

View file

@ -194,15 +194,3 @@ libevdev_init_test(void)
return s;
}
int main(int argc, char **argv)
{
int failed;
Suite *s = libevdev_init_test();
SRunner *sr = srunner_create(s);
srunner_run_all(sr, CK_NORMAL);
failed = srunner_ntests_failed(sr);
srunner_free(sr);
return failed;
}

45
test/test-main.c Normal file
View file

@ -0,0 +1,45 @@
/*
* Copyright © 2013 Red Hat, Inc.
*
* Permission to use, copy, modify, distribute, and sell this software and its
* documentation for any purpose is hereby granted without fee, provided that
* the above copyright notice appear in all copies and that both that copyright
* notice and this permission notice appear in supporting documentation, and
* that the name of the copyright holders not be used in advertising or
* publicity pertaining to distribution of the software without specific,
* written prior permission. The copyright holders make no representations
* about the suitability of this software for any purpose. It is provided "as
* is" without express or implied warranty.
*
* THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
* EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THIS SOFTWARE.
*/
#include <config.h>
#include <check.h>
extern Suite *event_name_suite(void);
extern Suite *libevdev_init_test(void);
extern Suite *queue_suite(void);
extern Suite *libevdev_has_event_test(void);
int main(int argc, char **argv)
{
int failed;
Suite *s = libevdev_has_event_test();
SRunner *sr = srunner_create(s);
srunner_add_suite(sr, libevdev_init_test());
srunner_add_suite(sr, queue_suite());
srunner_add_suite(sr, event_name_suite());
srunner_run_all(sr, CK_NORMAL);
failed = srunner_ntests_failed(sr);
srunner_free(sr);
return failed;
}