From: Ed Bartosh Date: Sat, 13 Feb 2016 09:02:21 +0000 (+0200) Subject: oe-selftest: don't use specific tasks X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~26996 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=00cd291605ff5f001979b350d95670e33012fdc9;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git oe-selftest: don't use specific tasks Image should be build usual way, i.e. using bitbake . Specifying do_mage_complete and do_rootfs_wicenv tasks should not be needed anymore as those tasks should be run by bitbake for every image. Removed specifying do_mage_complete and do_rootfs_wicenv tasks from bitbake calls. (From OE-Core rev: d8d7bd1b41eb846f18378a2581ff172cb2cc52b8) Signed-off-by: Ed Bartosh Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oeqa/selftest/wic.py b/meta/lib/oeqa/selftest/wic.py index ed0301837b7..b3f9f1ef5e9 100644 --- a/meta/lib/oeqa/selftest/wic.py +++ b/meta/lib/oeqa/selftest/wic.py @@ -50,7 +50,7 @@ class Wic(oeSelfTest): if not Wic.image_is_ready: bitbake('syslinux syslinux-native parted-native gptfdisk-native ' 'dosfstools-native mtools-native') - bitbake('core-image-minimal:do_image_complete core-image-minimal:do_rootfs_wicenv') + bitbake('core-image-minimal') Wic.image_is_ready = True rmtree(self.resultdir, ignore_errors=True)