From: Peter Hutterer Date: Thu, 12 Dec 2013 02:57:21 +0000 (+1000) Subject: test: split tests into run-time and build-time tests X-Git-Tag: libevdev-0.6~2 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fupstream%2Flibevdev.git;a=commitdiff_plain;h=2487950f65937e7bb9b767b84b008da2a16e70ac 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 --- 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 \