]> code.ossystems Code Review - openembedded-core.git/commitdiff
pkgdata.py: avoid target-sdk-dummy-provides to mess things up
authorChen Qi <Qi.Chen@windriver.com>
Wed, 30 Jan 2019 02:56:24 +0000 (10:56 +0800)
committerArmin Kuster <akuster808@gmail.com>
Sun, 7 Apr 2019 04:26:59 +0000 (09:56 +0530)
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>
meta/lib/oeqa/selftest/cases/pkgdata.py

index 0b4caf1b2c216398ef58fec1e7bec075ae563d6d..99117651e59dd2bd0ffbfdbbd218763cf044da2c 100644 (file)
@@ -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)