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:
Richard Purdie
2018-02-20 22:19:06 +00:00
parent c2e722f6a6
commit 21931e30d6

View File

@@ -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"""