diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2019-01-30 10:56:24 +0800 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2019-04-07 09:56:59 +0530 |
commit | 7b5a069d4f11e36a1c407c4212aba5aafaf4ee7f (patch) | |
tree | b4ee86c8706a2149b585b0694eba0d76d3546f60 | |
parent | 31449f3a7649be781b7b61f915d5e879728e87af (diff) | |
download | openembedded-core-7b5a069d4f11e36a1c407c4212aba5aafaf4ee7f.tar.gz openembedded-core-7b5a069d4f11e36a1c407c4212aba5aafaf4ee7f.tar.bz2 openembedded-core-7b5a069d4f11e36a1c407c4212aba5aafaf4ee7f.zip |
pkgdata.py: avoid target-sdk-dummy-provides to mess things up
Sometimes we meet the following failure for the test_lookup_recipe
test case.
AssertionError: 'zlib\nbusybox is in the RPROVIDES of target-sdk-provid[32 chars]ummy' != 'zlib\nbusybox'
zlib
+ busybox- busybox is in the RPROVIDES of target-sdk-provides-dummy:
- target-sdk-provides-dummy
This is because target-sdk-provides-dummy rprovides busybox.
So clean things up to avoid failure.
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta/lib/oeqa/selftest/cases/pkgdata.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/cases/pkgdata.py b/meta/lib/oeqa/selftest/cases/pkgdata.py index 0b4caf1b2c..99117651e5 100644 --- a/meta/lib/oeqa/selftest/cases/pkgdata.py +++ b/meta/lib/oeqa/selftest/cases/pkgdata.py @@ -13,6 +13,7 @@ class OePkgdataUtilTests(OESelftestTestCase): super(OePkgdataUtilTests, cls).setUpClass() # Ensure we have the right data in pkgdata cls.logger.info('Running bitbake to generate pkgdata') + bitbake('target-sdk-provides-dummy -c clean') bitbake('busybox zlib m4') @OETestID(1203) |