summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases/imagefeatures.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/imagefeatures.py')
-rw-r--r--meta/lib/oeqa/selftest/cases/imagefeatures.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/cases/imagefeatures.py b/meta/lib/oeqa/selftest/cases/imagefeatures.py
index 91d8e9b501..dac74ba72b 100644
--- a/meta/lib/oeqa/selftest/cases/imagefeatures.py
+++ b/meta/lib/oeqa/selftest/cases/imagefeatures.py
@@ -106,7 +106,7 @@ class ImageFeatures(OESelftestTestCase):
106 Author: Ed Bartosh <ed.bartosh@linux.intel.com> 106 Author: Ed Bartosh <ed.bartosh@linux.intel.com>
107 """ 107 """
108 108
109 features = 'IMAGE_FSTYPES += " ext4 ext4.bmap"' 109 features = 'IMAGE_FSTYPES += " ext4 ext4.bmap ext4.bmap.gz"'
110 self.write_config(features) 110 self.write_config(features)
111 111
112 image_name = 'core-image-minimal' 112 image_name = 'core-image-minimal'
@@ -116,15 +116,21 @@ class ImageFeatures(OESelftestTestCase):
116 link_name = get_bb_var('IMAGE_LINK_NAME', image_name) 116 link_name = get_bb_var('IMAGE_LINK_NAME', image_name)
117 image_path = os.path.join(deploy_dir_image, "%s.ext4" % link_name) 117 image_path = os.path.join(deploy_dir_image, "%s.ext4" % link_name)
118 bmap_path = "%s.bmap" % image_path 118 bmap_path = "%s.bmap" % image_path
119 gzip_path = "%s.gz" % bmap_path
119 120
120 # check if result image and bmap file are in deploy directory 121 # check if result image, bmap and bmap.gz files are in deploy directory
121 self.assertTrue(os.path.exists(image_path)) 122 self.assertTrue(os.path.exists(image_path))
122 self.assertTrue(os.path.exists(bmap_path)) 123 self.assertTrue(os.path.exists(bmap_path))
124 self.assertTrue(os.path.exists(gzip_path))
123 125
124 # check if result image is sparse 126 # check if result image is sparse
125 image_stat = os.stat(image_path) 127 image_stat = os.stat(image_path)
126 self.assertTrue(image_stat.st_size > image_stat.st_blocks * 512) 128 self.assertTrue(image_stat.st_size > image_stat.st_blocks * 512)
127 129
130 # check if the resulting gzip is valid
131 self.assertTrue(runCmd('gzip -t %s' % gzip_path))
132
133
128 def test_image_fstypes(self): 134 def test_image_fstypes(self):
129 """ 135 """
130 Summary: Check if image of supported image fstypes can be built 136 Summary: Check if image of supported image fstypes can be built