diff options
author | Björn Stenberg <bjst@enea.com> | 2012-12-19 17:18:27 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-12-26 11:34:04 +0000 |
commit | 1d2c6833ae802553d6df3dbb249336c44cef5df5 (patch) | |
tree | bdcbf8c98fae2723949c625c195d59f21251e124 /meta/recipes-devtools/automake | |
parent | 627e745d7bcda8821392f30c60da3cf2858d9e7f (diff) | |
download | poky-1d2c6833ae802553d6df3dbb249336c44cef5df5.tar.gz |
Add a new distro feature "ptest".
This patch creates a new distro feature "ptest", which creates -ptest
packages containing the test suite of the package for running on the
target. Test files are installed in /usr/lib/<pkg>/ptest.
The patch also includes a change to automake, splitting the "make check"
target into separate steps for building and running the tests.
(From OE-Core rev: 6f92e7f8891008dd3c89325d3fbe2da853372326)
Signed-off-by: Björn Stenberg <bjst@enea.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/automake')
-rw-r--r-- | meta/recipes-devtools/automake/automake/buildtest.patch | 33 | ||||
-rw-r--r-- | meta/recipes-devtools/automake/automake_1.12.5.bb | 3 |
2 files changed, 35 insertions, 1 deletions
diff --git a/meta/recipes-devtools/automake/automake/buildtest.patch b/meta/recipes-devtools/automake/automake/buildtest.patch new file mode 100644 index 0000000000..1dd5337849 --- /dev/null +++ b/meta/recipes-devtools/automake/automake/buildtest.patch | |||
@@ -0,0 +1,33 @@ | |||
1 | Split "check-TESTS" into a buildtest and runtest target, so that they can | ||
2 | be run separately. | ||
3 | |||
4 | Signed-off-by: Björn Stenberg <bjst@enea.com> | ||
5 | Upstream-Status: Pending | ||
6 | |||
7 | --- a/lib/am/check.am 2012-11-14 13:46:16.335475995 +0100 | ||
8 | +++ b/lib/am/check.am 2012-08-13 18:40:12.000000000 +0200 | ||
9 | @@ -44,7 +44,7 @@ | ||
10 | am__tty_colors = $(am__tty_colors_dummy) | ||
11 | endif !%?COLOR% | ||
12 | |||
13 | -.PHONY: check-TESTS | ||
14 | +.PHONY: check-TESTS buildtest-TESTS runtest-TESTS | ||
15 | |||
16 | if %?PARALLEL_TESTS% | ||
17 | |||
18 | @@ -465,7 +465,14 @@ | ||
19 | |||
20 | else !%?PARALLEL_TESTS% | ||
21 | |||
22 | -check-TESTS: $(TESTS) | ||
23 | +AM_RECURSIVE_TARGETS += buildtest runtest | ||
24 | + | ||
25 | +buildtest-TESTS: $(TESTS) | ||
26 | + | ||
27 | +check-TESTS: buildtest-TESTS | ||
28 | + $(MAKE) $(AM_MAKEFLAGS) runtest-TESTS | ||
29 | + | ||
30 | +runtest-TESTS: | ||
31 | @failed=0; all=0; xfail=0; xpass=0; skip=0; \ | ||
32 | srcdir=$(srcdir); export srcdir; \ | ||
33 | ## Make sure Solaris VPATH-expands all members of this list, even | ||
diff --git a/meta/recipes-devtools/automake/automake_1.12.5.bb b/meta/recipes-devtools/automake/automake_1.12.5.bb index 76e2b872ed..c68167483a 100644 --- a/meta/recipes-devtools/automake/automake_1.12.5.bb +++ b/meta/recipes-devtools/automake/automake_1.12.5.bb | |||
@@ -23,7 +23,8 @@ PATHFIXPATCH_class-nativesdk = "" | |||
23 | SRC_URI += "${PATHFIXPATCH} \ | 23 | SRC_URI += "${PATHFIXPATCH} \ |
24 | file://prefer-cpio-over-pax-for-ustar-archives.patch \ | 24 | file://prefer-cpio-over-pax-for-ustar-archives.patch \ |
25 | file://python-libdir.patch \ | 25 | file://python-libdir.patch \ |
26 | file://py-compile-compile-only-optimized-byte-code.patch" | 26 | file://py-compile-compile-only-optimized-byte-code.patch \ |
27 | file://buildtest.patch" | ||
27 | 28 | ||
28 | SRC_URI[md5sum] = "674f6d28f8723e0f478cb03de30f36f1" | 29 | SRC_URI[md5sum] = "674f6d28f8723e0f478cb03de30f36f1" |
29 | SRC_URI[sha256sum] = "82089e23b384d3e64efa4f09f133a02dadb91c0593d4f1d4e12c29d806be9925" | 30 | SRC_URI[sha256sum] = "82089e23b384d3e64efa4f09f133a02dadb91c0593d4f1d4e12c29d806be9925" |