Some native tools (syslinux, parted, mtools, etc) are required by wic to produce images. Unit tests fail if the tools are not available.
Baked tools and image-core-minimal used by wic before running tests. [YOCTO #7730] Signed-off-by: Ed Bartosh <[email protected]> --- meta/lib/oeqa/selftest/wic.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/meta/lib/oeqa/selftest/wic.py b/meta/lib/oeqa/selftest/wic.py index c628b59..817685d 100644 --- a/meta/lib/oeqa/selftest/wic.py +++ b/meta/lib/oeqa/selftest/wic.py @@ -36,6 +36,12 @@ class Wic(oeSelfTest): resultdir = "/var/tmp/wic/build/" + @classmethod + def setUpClass(cls): + """Build wic runtime dependencies and images used in the tests.""" + runCmd('bitbake syslinux syslinux-native parted-native ' + 'dosfstools-native mtools-native core-image-minimal') + def setUp(self): """This code is executed before each test method.""" rmtree(self.resultdir, ignore_errors=True) -- 2.1.4 -- _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
