mirror of
https://git.yoctoproject.org/poky
synced 2026-05-09 17:39:31 +00:00
oeqa/buildperf/base: Fix fetchall reference to use runall bitbake option
The fetchall task was removed, use its replacement bitbake option. (From OE-Core rev: e228d16248d879534c4587d9d9c9fe356e13494d) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -282,7 +282,7 @@ class BuildPerfTestCase(unittest.TestCase):
|
|||||||
if not os.path.isdir(self.tmp_dir):
|
if not os.path.isdir(self.tmp_dir):
|
||||||
os.mkdir(self.tmp_dir)
|
os.mkdir(self.tmp_dir)
|
||||||
if self.build_target:
|
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):
|
def tearDown(self):
|
||||||
"""Tear-down fixture for each test"""
|
"""Tear-down fixture for each test"""
|
||||||
|
|||||||
Reference in New Issue
Block a user