From 2487950f65937e7bb9b767b84b008da2a16e70ac Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Thu, 12 Dec 2013 12:57:21 +1000 Subject: [PATCH] test: split tests into run-time and build-time tests The build-time tests don't do anything, we don't need to run them. Signed-off-by: Peter Hutterer --- test/Makefile.am | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/test/Makefile.am b/test/Makefile.am index f3102ea..cc9d6bd 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1,7 +1,10 @@ if BUILD_TESTS -noinst_PROGRAMS = test-libevdev test-compile-pedantic +run_tests = test-libevdev +build_tests = test-compile-pedantic -TESTS = $(noinst_PROGRAMS) +noinst_PROGRAMS = $(run_tests) $(build_tests) + +TESTS = $(run_tests) libevdev_sources = $(top_srcdir)/libevdev/libevdev.c \ $(top_srcdir)/libevdev/libevdev.h \ -- 2.7.4