mirror of
https://gitlab.freedesktop.org/libevdev/libevdev.git
synced 2025-12-24 14:40:07 +01:00
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:
parent
32f86f97f6
commit
9e81874c49
6 changed files with 54 additions and 58 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
45
test/test-main.c
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue