mirror of
https://git.yoctoproject.org/poky
synced 2026-05-22 17:27:54 +02:00
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>
34 lines
840 B
Diff
34 lines
840 B
Diff
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
|
|
|
|
--- a/lib/am/check.am 2012-11-14 13:46:16.335475995 +0100
|
|
+++ b/lib/am/check.am 2012-08-13 18:40:12.000000000 +0200
|
|
@@ -44,7 +44,7 @@
|
|
am__tty_colors = $(am__tty_colors_dummy)
|
|
endif !%?COLOR%
|
|
|
|
-.PHONY: check-TESTS
|
|
+.PHONY: check-TESTS buildtest-TESTS runtest-TESTS
|
|
|
|
if %?PARALLEL_TESTS%
|
|
|
|
@@ -465,7 +465,14 @@
|
|
|
|
else !%?PARALLEL_TESTS%
|
|
|
|
-check-TESTS: $(TESTS)
|
|
+AM_RECURSIVE_TARGETS += buildtest runtest
|
|
+
|
|
+buildtest-TESTS: $(TESTS)
|
|
+
|
|
+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
|