summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/automake/automake/0004-Add-a-new-distro-feature-ptest.patch
blob: 91c7f1c2ccb86e8e6a91f7e176fdb28bf2d9cdee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
From 839dca38cf24e70c7f0e20015d55aa8e543dd403 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bj=C3=B6rn=20Stenberg?= <bjst@enea.com>
Date: Wed, 19 Dec 2012 17:18:27 +0100
Subject: [PATCH 4/6] Add a new distro feature "ptest".
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Split "check-TESTS" into a buildtest and runtest target, so that they can
be run separately.

Signed-off-by: Björn Stenberg <bjst@enea.com>
Upstream-Status: Pending
---
 lib/am/check.am | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/lib/am/check.am b/lib/am/check.am
index e51a771..070e2da 100644
--- a/lib/am/check.am
+++ b/lib/am/check.am
@@ -41,7 +41,7 @@ am__tty_colors = { \
   fi; \
 }
 
-.PHONY: check-TESTS
+.PHONY: check-TESTS buildtest-TESTS runtest-TESTS
 
 if !%?SERIAL_TESTS%
 
@@ -520,7 +520,14 @@ else %?SERIAL_TESTS%
 
 ## Obsolescent serial testsuite driver.
 
-check-TESTS: $(TESTS)
+AM_RECURSIVE_TARGETS += buildtest runtest
+
+buildtest-TESTS: $(TESTS) $(check_PROGRAMS)
+
+check-TESTS: buildtest-TESTS
+	$(MAKE) $(AM_MAKEFLAGS) runtest-TESTS
+
+runtest-TESTS:
 	@failed=0; all=0; xfail=0; xpass=0; skip=0; \
 	srcdir=$(srcdir); export srcdir; \
 ## Make sure Solaris VPATH-expands all members of this list, even
-- 
2.39.2