From: Kevin Hao Date: Sat, 15 Feb 2020 11:41:44 +0000 (+0800) Subject: selftest: wic: Add APPEND to the optional variables list X-Git-Tag: yocto-4.0~7381 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=7c8b3a1b920fd4cc1598357985eef0e5e0e0ac79;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git selftest: wic: Add APPEND to the optional variables list The APPEND is an optional variable, so add it to the optional variables list to make the wic selftest happy. Signed-off-by: Kevin Hao Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oeqa/selftest/cases/wic.py b/meta/lib/oeqa/selftest/cases/wic.py index 46cd98b1934..626a217e69f 100644 --- a/meta/lib/oeqa/selftest/cases/wic.py +++ b/meta/lib/oeqa/selftest/cases/wic.py @@ -537,7 +537,8 @@ class Wic2(WicTestCase): # filter out optional variables wicvars = wicvars.difference(('DEPLOY_DIR_IMAGE', 'IMAGE_BOOT_FILES', 'INITRD', 'INITRD_LIVE', 'ISODIR','INITRAMFS_IMAGE', - 'INITRAMFS_IMAGE_BUNDLE', 'INITRAMFS_LINK_NAME')) + 'INITRAMFS_IMAGE_BUNDLE', 'INITRAMFS_LINK_NAME', + 'APPEND')) with open(path) as envfile: content = dict(line.split("=", 1) for line in envfile) # test if variables used by wic present in the .env file