diff options
author | Saul Wold <sgw@linux.intel.com> | 2018-01-22 11:55:53 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-01-23 23:43:39 +0000 |
commit | f691ed2572e54fa2af04c1569746c36ce04463ee (patch) | |
tree | ba4afb9dcbec62605bd230e9cdd2b25f96cc5183 | |
parent | b95b6ba1a2959e2294a8848fa35f20163388eb06 (diff) | |
download | openembedded-core-f691ed2572e54fa2af04c1569746c36ce04463ee.tar.gz openembedded-core-f691ed2572e54fa2af04c1569746c36ce04463ee.tar.bz2 openembedded-core-f691ed2572e54fa2af04c1569746c36ce04463ee.zip |
imagefeatures: disable f2fs from test_image_features by default
Since the primary f2fs utilities are provided by the meta-openembedded
meta-filesystems layer, we disable the testing of that functionality
here.
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/lib/oeqa/selftest/cases/imagefeatures.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/imagefeatures.py b/meta/lib/oeqa/selftest/cases/imagefeatures.py index 0ffb686921..09e0b20625 100644 --- a/meta/lib/oeqa/selftest/cases/imagefeatures.py +++ b/meta/lib/oeqa/selftest/cases/imagefeatures.py @@ -211,7 +211,7 @@ class ImageFeatures(OESelftestTestCase): image_name = 'core-image-minimal' img_types = [itype for itype in get_bb_var("IMAGE_TYPES", image_name).split() \ - if itype not in ('container', 'elf', 'multiubi')] + if itype not in ('container', 'elf', 'f2fs', 'multiubi')] config = 'IMAGE_FSTYPES += "%s"\n'\ 'MKUBIFS_ARGS ?= "-m 2048 -e 129024 -c 2047"\n'\ |