Lines Matching full:image

24 …Expected: 1. Connection to the image via ssh using root user without providing a password should b…
25 …2. Connection to the image via ssh using tester user without providing a password should be allowe…
36 # Build a core-image-minimal
37 bitbake('core-image-minimal')
39 with runqemu("core-image-minimal") as qemu:
50 …Expected: 1. Connection to the image via ssh using root user without providing a password should N…
51 …2. Connection to the image via ssh using tester user without providing a password should be allowe…
62 # Build a core-image-minimal
63 bitbake('core-image-minimal')
65 with runqemu("core-image-minimal") as qemu:
78 Summary: Check Wayland support in image
79 Expected: 1. Wayland image can be build
88 …self.skipTest('neither opengl nor wayland present on DISTRO_FEATURES so core-image-weston cannot b…
90 # Build a core-image-weston
91 bitbake('core-image-weston')
96 Expected: 1. core-image-minimal can be build with bmap support
97 2. core-image-minimal is sparse
105 image = 'core-image-minimal'
106 bitbake(image)
107 bb_vars = get_bb_vars(['DEPLOY_DIR_IMAGE', 'IMAGE_LINK_NAME'], image)
113 # check if result image, bmap and bmap.gz files are in deploy directory
118 # check if result image is sparse
128 Expected: 1. core-image-minimal can be built with vmdk, vdi and
130 2. qemu-img says each image has the expected format
141 image = 'core-image-minimal'
142 bitbake(image)
143 bb_vars = get_bb_vars(['DEPLOY_DIR_IMAGE', 'IMAGE_LINK_NAME'], image)
149 # check if result image file is in deploy directory
152 # check if result image is vmdk
153 sysroot = get_bb_var('STAGING_DIR_NATIVE', 'core-image-minimal')
166 Expected: 1. core-image-minimal can be built with
169 2. The above image has a valid sha256sum
178 image = 'core-image-minimal'
179 bitbake(image)
180 bb_vars = get_bb_vars(['DEPLOY_DIR_IMAGE', 'IMAGE_LINK_NAME'], image)
184 # check if resulting image is in the deploy directory
194 Summary: Check if image of supported image fstypes can be built
195 Expected: core-image-minimal can be built for various image types
199 image = 'core-image-minimal'
201 all_image_types = set(get_bb_var("IMAGE_TYPES", image).split())
219 bitbake(image)
220 bb_vars = get_bb_vars(['DEPLOY_DIR_IMAGE', 'IMAGE_LINK_NAME', 'MULTIUBI_BUILD'], image)
228 # check if result image is in deploy directory
230 "%s image %s doesn't exist" % (itype, image_path))
233 # check if result image is in deploy directory
235 "%s image %s doesn't exist" % (itype, image_path))
245 bitbake("core-image-base")
266 bitbake("--graphviz core-image-weston")
271 Expected: 1. core-image-minimal can be build with IMAGE_GEN_DEBUGFS variable set
279 image = 'core-image-minimal'
285 bitbake(image)
286 bb_vars = get_bb_vars(['DEPLOY_DIR_IMAGE', 'IMAGE_LINK_NAME'], image)
301 """Test creation of image with no packages"""
302 image = 'test-empty-image'
303 bitbake(image)
304 bb_vars = get_bb_vars(['DEPLOY_DIR_IMAGE', 'IMAGE_LINK_NAME'], image)
313 Test that an image containing manpages has working man and apropos commands.
320 bitbake("core-image-minimal")
322 with runqemu('core-image-minimal', ssh=False, runqemuparams='nographic') as qemu: