diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-02-20 22:19:06 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-02-20 22:25:10 +0000 |
commit | 21931e30d6a4c1917f72ed0a22e41484729da87e (patch) | |
tree | 310fffc9c82e751be26f02eb262598bc305ad334 /meta/lib | |
parent | c2e722f6a63323c6fc5c624522e70315e750e78b (diff) | |
download | poky-21931e30d6a4c1917f72ed0a22e41484729da87e.tar.gz |
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>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/buildperf/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/buildperf/base.py b/meta/lib/oeqa/buildperf/base.py index 7b2b4aa2a4..ac6ee15d09 100644 --- a/meta/lib/oeqa/buildperf/base.py +++ b/meta/lib/oeqa/buildperf/base.py | |||
@@ -282,7 +282,7 @@ class BuildPerfTestCase(unittest.TestCase): | |||
282 | if not os.path.isdir(self.tmp_dir): | 282 | if not os.path.isdir(self.tmp_dir): |
283 | os.mkdir(self.tmp_dir) | 283 | os.mkdir(self.tmp_dir) |
284 | if self.build_target: | 284 | if self.build_target: |
285 | self.run_cmd(['bitbake', self.build_target, '-c', 'fetchall']) | 285 | self.run_cmd(['bitbake', self.build_target, '--runall=fetch']) |
286 | 286 | ||
287 | def tearDown(self): | 287 | def tearDown(self): |
288 | """Tear-down fixture for each test""" | 288 | """Tear-down fixture for each test""" |