diff options
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/selftest/cases/imagefeatures.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/imagefeatures.py b/meta/lib/oeqa/selftest/cases/imagefeatures.py index afc629f29c..8213d63e37 100644 --- a/meta/lib/oeqa/selftest/cases/imagefeatures.py +++ b/meta/lib/oeqa/selftest/cases/imagefeatures.py | |||
@@ -161,7 +161,8 @@ class ImageFeatures(OESelftestTestCase): | |||
161 | sysroot = get_bb_var('STAGING_DIR_NATIVE', 'core-image-minimal') | 161 | sysroot = get_bb_var('STAGING_DIR_NATIVE', 'core-image-minimal') |
162 | result = runCmd('qemu-img info --output json %s' % image_path, | 162 | result = runCmd('qemu-img info --output json %s' % image_path, |
163 | native_sysroot=sysroot) | 163 | native_sysroot=sysroot) |
164 | self.assertTrue(json.loads(result.output).get('format') == itype) | 164 | self.assertTrue(json.loads(result.output).get('format') == itype, |
165 | msg="Could not parse '%s'" % result.output) | ||
165 | 166 | ||
166 | def test_long_chain_conversion(self): | 167 | def test_long_chain_conversion(self): |
167 | """ | 168 | """ |