1From 839dca38cf24e70c7f0e20015d55aa8e543dd403 Mon Sep 17 00:00:00 2001 2From: =?UTF-8?q?Bj=C3=B6rn=20Stenberg?= <bjst@enea.com> 3Date: Wed, 19 Dec 2012 17:18:27 +0100 4Subject: [PATCH 4/6] Add a new distro feature "ptest". 5MIME-Version: 1.0 6Content-Type: text/plain; charset=UTF-8 7Content-Transfer-Encoding: 8bit 8 9Split "check-TESTS" into a buildtest and runtest target, so that they can 10be run separately. 11 12Signed-off-by: Björn Stenberg <bjst@enea.com> 13Upstream-Status: Pending 14--- 15 lib/am/check.am | 11 +++++++++-- 16 1 file changed, 9 insertions(+), 2 deletions(-) 17 18diff --git a/lib/am/check.am b/lib/am/check.am 19index e51a771..070e2da 100644 20--- a/lib/am/check.am 21+++ b/lib/am/check.am 22@@ -41,7 +41,7 @@ am__tty_colors = { \ 23 fi; \ 24 } 25 26-.PHONY: check-TESTS 27+.PHONY: check-TESTS buildtest-TESTS runtest-TESTS 28 29 if !%?SERIAL_TESTS% 30 31@@ -520,7 +520,14 @@ else %?SERIAL_TESTS% 32 33 ## Obsolescent serial testsuite driver. 34 35-check-TESTS: $(TESTS) 36+AM_RECURSIVE_TARGETS += buildtest runtest 37+ 38+buildtest-TESTS: $(TESTS) $(check_PROGRAMS) 39+ 40+check-TESTS: buildtest-TESTS 41+ $(MAKE) $(AM_MAKEFLAGS) runtest-TESTS 42+ 43+runtest-TESTS: 44 @failed=0; all=0; xfail=0; xpass=0; skip=0; \ 45 srcdir=$(srcdir); export srcdir; \ 46 ## Make sure Solaris VPATH-expands all members of this list, even 47-- 482.39.2 49 50