summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools
diff options
context:
space:
mode:
authorJulien Stephan <jstephan@baylibre.com>2023-07-12 15:57:07 +0200
committerSteve Sakoman <steve@sakoman.com>2023-08-26 04:24:02 -1000
commita543532a76f48892318e1f3a3181f2e0f01046dc (patch)
tree85c668f54f7c7902d91982c4ad870106b13e40e3 /meta/recipes-devtools
parent37ab9a97fcfcc2c5ac36a014e8fa1475abc1299c (diff)
downloadpoky-a543532a76f48892318e1f3a3181f2e0f01046dc.tar.gz
automake: fix buildtest patch
Add check_PROGRAMS as a dependency of buildtest-TESTS target. This is required because according to the official automake documentation [1]: * TESTS: contains all the tests files * check_PROGRAMS: contains the programs used by the tests * check_PROGRAMS is not automatically added to TESTS So, by using only TESTS as a dependency for buildtest-TESTS we may end up having runtime errors because of missing program required by the tests. [1]: https://www.gnu.org/software/automake/manual/html_node/Scripts_002dbased-Testsuites.html (From OE-Core rev: 5859a4143a1495198af323cedf06248c9b363060) Signed-off-by: Julien Stephan <jstephan@baylibre.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit ee3e2af4f8ed95b4fd0f7cec52ae4e169401b719) Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r--meta/recipes-devtools/automake/automake/buildtest.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/automake/automake/buildtest.patch b/meta/recipes-devtools/automake/automake/buildtest.patch
index b88b9e8693..c43a4ac8f3 100644
--- a/meta/recipes-devtools/automake/automake/buildtest.patch
+++ b/meta/recipes-devtools/automake/automake/buildtest.patch
@@ -36,7 +36,7 @@ index e0db651..de137fa 100644
36-check-TESTS: $(TESTS) 36-check-TESTS: $(TESTS)
37+AM_RECURSIVE_TARGETS += buildtest runtest 37+AM_RECURSIVE_TARGETS += buildtest runtest
38+ 38+
39+buildtest-TESTS: $(TESTS) 39+buildtest-TESTS: $(TESTS) $(check_PROGRAMS)
40+ 40+
41+check-TESTS: buildtest-TESTS 41+check-TESTS: buildtest-TESTS
42+ $(MAKE) $(AM_MAKEFLAGS) runtest-TESTS 42+ $(MAKE) $(AM_MAKEFLAGS) runtest-TESTS