diff options
author | Ross Burton <ross.burton@intel.com> | 2016-02-22 16:24:07 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-26 17:16:19 +0000 |
commit | 7a95c2cb6715bed9d6904ef351fd7a793cbadb00 (patch) | |
tree | 2da80d8b9d6812eb76b6e6cf88467534466c7b3a /meta/lib/oeqa/selftest/buildoptions.py | |
parent | 2980ac001f7be51672ad2092415f8809a2b3ccf5 (diff) | |
download | poky-7a95c2cb6715bed9d6904ef351fd7a793cbadb00.tar.gz |
oeqa/selftest/buildoptions: build -minimal instead of -sato images
When checking enabling buildhistory doesn't change anything but rootfs stamps,
just build core-image-minimal instead of -sato to reduce the time this test
takes.
(From OE-Core rev: e9b44579007cbaa24c6b39ff788be3a927797660)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/selftest/buildoptions.py')
-rw-r--r-- | meta/lib/oeqa/selftest/buildoptions.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/buildoptions.py b/meta/lib/oeqa/selftest/buildoptions.py index 602d95f9bd..e2d12c3f11 100644 --- a/meta/lib/oeqa/selftest/buildoptions.py +++ b/meta/lib/oeqa/selftest/buildoptions.py | |||
@@ -147,12 +147,12 @@ class BuildhistoryTests(BuildhistoryBase): | |||
147 | 147 | ||
148 | features = 'TMPDIR = "%s"\n' % tmpdir1 | 148 | features = 'TMPDIR = "%s"\n' % tmpdir1 |
149 | self.write_config(features) | 149 | self.write_config(features) |
150 | bitbake('core-image-sato -S none -c rootfs') | 150 | bitbake('core-image-minimal -S none -c rootfs') |
151 | 151 | ||
152 | features = 'TMPDIR = "%s"\n' % tmpdir2 | 152 | features = 'TMPDIR = "%s"\n' % tmpdir2 |
153 | features += 'INHERIT += "buildhistory"\n' | 153 | features += 'INHERIT += "buildhistory"\n' |
154 | self.write_config(features) | 154 | self.write_config(features) |
155 | bitbake('core-image-sato -S none -c rootfs') | 155 | bitbake('core-image-minimal -S none -c rootfs') |
156 | 156 | ||
157 | def get_files(d): | 157 | def get_files(d): |
158 | f = [] | 158 | f = [] |