[oe-commits] [openembedded-core] 02/03: oeqa/buildperf/base: Fix fetchall reference to use runall bitbake option

git at git.openembedded.org git at git.openembedded.org
Tue Feb 20 22:25:35 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository openembedded-core.

commit e228d16248d879534c4587d9d9c9fe356e13494d
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Tue Feb 20 22:19:06 2018 +0000

    oeqa/buildperf/base: Fix fetchall reference to use runall bitbake option
    
    The fetchall task was removed, use its replacement bitbake option.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oeqa/buildperf/base.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oeqa/buildperf/base.py b/meta/lib/oeqa/buildperf/base.py
index 7b2b4aa..ac6ee15 100644
--- a/meta/lib/oeqa/buildperf/base.py
+++ b/meta/lib/oeqa/buildperf/base.py
@@ -282,7 +282,7 @@ class BuildPerfTestCase(unittest.TestCase):
         if not os.path.isdir(self.tmp_dir):
             os.mkdir(self.tmp_dir)
         if self.build_target:
-            self.run_cmd(['bitbake', self.build_target, '-c', 'fetchall'])
+            self.run_cmd(['bitbake', self.build_target, '--runall=fetch'])
 
     def tearDown(self):
         """Tear-down fixture for each test"""

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list