diff options
author | Ross Burton <ross.burton@intel.com> | 2019-11-28 16:50:35 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-12-04 12:30:58 +0000 |
commit | 4f82d1e59a00916d79f1df22579ff9c05a7519b1 (patch) | |
tree | 280aa03fd9388239e3e65aebf5064acf6a0066c3 /meta/lib | |
parent | 3baa987ead8c5f9c2929f06b026ebc5a779ef30f (diff) | |
download | poky-4f82d1e59a00916d79f1df22579ff9c05a7519b1.tar.gz |
selftest/imagefeatures: blacklist zst
The dependency isn't in OE-Core so we need to disable this test.
(From OE-Core rev: 3646499cb34e91c1d012d057eedfdeff08a4f06c)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/selftest/cases/imagefeatures.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/lib/oeqa/selftest/cases/imagefeatures.py b/meta/lib/oeqa/selftest/cases/imagefeatures.py index ef2eefa860..5c519ac3d6 100644 --- a/meta/lib/oeqa/selftest/cases/imagefeatures.py +++ b/meta/lib/oeqa/selftest/cases/imagefeatures.py | |||
@@ -208,13 +208,13 @@ class ImageFeatures(OESelftestTestCase): | |||
208 | """ | 208 | """ |
209 | image_name = 'core-image-minimal' | 209 | image_name = 'core-image-minimal' |
210 | 210 | ||
211 | img_types = [itype for itype in get_bb_var("IMAGE_TYPES", image_name).split() \ | 211 | all_image_types = set(get_bb_var("IMAGE_TYPES", image_name).split()) |
212 | if itype not in ('container', 'elf', 'f2fs', 'multiubi')] | 212 | blacklist = set(('container', 'elf', 'f2fs', 'multiubi', 'tar.zst')) |
213 | img_types = all_image_types - blacklist | ||
213 | 214 | ||
214 | config = 'IMAGE_FSTYPES += "%s"\n'\ | 215 | config = 'IMAGE_FSTYPES += "%s"\n'\ |
215 | 'MKUBIFS_ARGS ?= "-m 2048 -e 129024 -c 2047"\n'\ | 216 | 'MKUBIFS_ARGS ?= "-m 2048 -e 129024 -c 2047"\n'\ |
216 | 'UBINIZE_ARGS ?= "-m 2048 -p 128KiB -s 512"' % ' '.join(img_types) | 217 | 'UBINIZE_ARGS ?= "-m 2048 -p 128KiB -s 512"' % ' '.join(img_types) |
217 | |||
218 | self.write_config(config) | 218 | self.write_config(config) |
219 | 219 | ||
220 | bitbake(image_name) | 220 | bitbake(image_name) |