diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-04-15 14:09:28 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-04-18 11:37:24 +0100 |
commit | 84a6d97670d6ec0589b2591b4a660b3b069e21cb (patch) | |
tree | ce061638781b274344cd5f39ace0ef1fccc16d82 /meta/lib | |
parent | 773f19df44376fdd57e2c03c791c6e36616f7c46 (diff) | |
download | poky-84a6d97670d6ec0589b2591b4a660b3b069e21cb.tar.gz |
oeqa/selftest: Ensure packages classes are set correctly for maintainers test
The dnf packages aren't parsed if rpm isn't in PACKAGE_CLASSES which means
the aintainers test failes for OE-Core (where ipk is the default) but not
for poky (where the default is rpm).
Ensure PACKAGE_CLASSES is set so it works in all cases.
[YOCTO #14277]
(From OE-Core rev: 842b11107363357ed933cfcf619f1cf23f0d841e)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/selftest/cases/distrodata.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/distrodata.py b/meta/lib/oeqa/selftest/cases/distrodata.py index fbc0c2a98d..0ad6e1ef91 100644 --- a/meta/lib/oeqa/selftest/cases/distrodata.py +++ b/meta/lib/oeqa/selftest/cases/distrodata.py | |||
@@ -99,7 +99,7 @@ The following recipes do not have a DESCRIPTION. Please add an entry for DESCRIP | |||
99 | return True | 99 | return True |
100 | return False | 100 | return False |
101 | 101 | ||
102 | feature = 'require conf/distro/include/maintainers.inc\nLICENSE_FLAGS_WHITELIST += " commercial"\nPARSE_ALL_RECIPES = "1"\n' | 102 | feature = 'require conf/distro/include/maintainers.inc\nLICENSE_FLAGS_WHITELIST += " commercial"\nPARSE_ALL_RECIPES = "1"\nPACKAGE_CLASSES = "package_ipk package_deb package_rpm"\n' |
103 | self.write_config(feature) | 103 | self.write_config(feature) |
104 | 104 | ||
105 | with bb.tinfoil.Tinfoil() as tinfoil: | 105 | with bb.tinfoil.Tinfoil() as tinfoil: |