From: Ray Strode Date: Sat, 19 Feb 2011 22:10:34 +0000 (-0500) Subject: tests: don't run during make check X-Git-Tag: 0.8.4~63 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=77e29359bc9d0e09390d97106b4ff7f949fc7986;p=thirdparty%2Fplymouth.git tests: don't run during make check They aren't unit tests so running them in make check is wrong. Eventually, I'd like them to be unit tests, though, and not just little scratch programs. --- diff --git a/src/libply/tests/Makefile.am b/src/libply/tests/Makefile.am index 8e37f93d..bc4da58f 100644 --- a/src/libply/tests/Makefile.am +++ b/src/libply/tests/Makefile.am @@ -19,4 +19,7 @@ endif noinst_PROGRAMS = $(TESTS) +# Our tests aren't unit tests so clear for now +TESTS = + MAINTAINERCLEANFILES = Makefile.in diff --git a/src/tests/Makefile.am b/src/tests/Makefile.am index d6ddc9ed..86a8ea61 100644 --- a/src/tests/Makefile.am +++ b/src/tests/Makefile.am @@ -12,4 +12,7 @@ include $(srcdir)/ply-boot-splash-test.am endif noinst_PROGRAMS = $(TESTS) + +# our tests aren't unit tests, so clear for now +TESTS = MAINTAINERCLEANFILES = Makefile.in