From 77e29359bc9d0e09390d97106b4ff7f949fc7986 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Sat, 19 Feb 2011 17:10:34 -0500 Subject: [PATCH] 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. --- src/libply/tests/Makefile.am | 3 +++ src/tests/Makefile.am | 3 +++ 2 files changed, 6 insertions(+) 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