diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-05-14 12:22:14 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-05-15 17:53:29 +0100 |
commit | be2cb32f53fbc8ed06890ab252b3515da59485cf (patch) | |
tree | d87cf6ca552c2f315af8c15af3fbf37bcef9e37d | |
parent | a2084a074930505d29a2e13d71275afe0aa21051 (diff) | |
download | poky-be2cb32f53fbc8ed06890ab252b3515da59485cf.tar.gz |
ptest: Add RDEPENDS frpm PN-ptest to PN package
Many different ptests are breaking as they assume that ${PN}-ptest
depends on ${PN}. It doesn't currently but should. If we fix this, many
different ptests start passing when they previously failed.
It does depend on fixing an issue in the dbus-test recipe which is done
in the preceeding patch (mentioned in case this gets backported).
(From OE-Core rev: b47194b57d94260b4e6438c5bf74914027f0b520)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/ptest.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/ptest.bbclass b/meta/classes/ptest.bbclass index 936bf82736..fa4c36ec76 100644 --- a/meta/classes/ptest.bbclass +++ b/meta/classes/ptest.bbclass | |||
@@ -13,6 +13,7 @@ PTEST_ENABLED = "${@bb.utils.contains('DISTRO_FEATURES', 'ptest', '1', '0', d)}" | |||
13 | PTEST_ENABLED_class-native = "" | 13 | PTEST_ENABLED_class-native = "" |
14 | PTEST_ENABLED_class-nativesdk = "" | 14 | PTEST_ENABLED_class-nativesdk = "" |
15 | PTEST_ENABLED_class-cross-canadian = "" | 15 | PTEST_ENABLED_class-cross-canadian = "" |
16 | RDEPENDS_${PN}-ptest += "${PN}" | ||
16 | RDEPENDS_${PN}-ptest_class-native = "" | 17 | RDEPENDS_${PN}-ptest_class-native = "" |
17 | RDEPENDS_${PN}-ptest_class-nativesdk = "" | 18 | RDEPENDS_${PN}-ptest_class-nativesdk = "" |
18 | RRECOMMENDS_${PN}-ptest += "ptest-runner" | 19 | RRECOMMENDS_${PN}-ptest += "ptest-runner" |