diff options
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/wic.py')
-rw-r--r-- | meta/lib/oeqa/selftest/cases/wic.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/lib/oeqa/selftest/cases/wic.py b/meta/lib/oeqa/selftest/cases/wic.py index fa81584a8c..a11e2d0781 100644 --- a/meta/lib/oeqa/selftest/cases/wic.py +++ b/meta/lib/oeqa/selftest/cases/wic.py | |||
@@ -1306,8 +1306,8 @@ class Wic2(WicTestCase): | |||
1306 | result = runCmd("%s/usr/sbin/sfdisk -F %s" % (sysroot, new_image_path)) | 1306 | result = runCmd("%s/usr/sbin/sfdisk -F %s" % (sysroot, new_image_path)) |
1307 | self.assertTrue("0 B, 0 bytes, 0 sectors" in result.output) | 1307 | self.assertTrue("0 B, 0 bytes, 0 sectors" in result.output) |
1308 | 1308 | ||
1309 | os.rename(image_path, image_path + '.bak') | 1309 | bb.utils.rename(image_path, image_path + '.bak') |
1310 | os.rename(new_image_path, image_path) | 1310 | bb.utils.rename(new_image_path, image_path) |
1311 | 1311 | ||
1312 | # Check if it boots in qemu | 1312 | # Check if it boots in qemu |
1313 | with runqemu('core-image-minimal', ssh=False) as qemu: | 1313 | with runqemu('core-image-minimal', ssh=False) as qemu: |
@@ -1318,7 +1318,7 @@ class Wic2(WicTestCase): | |||
1318 | if os.path.exists(new_image_path): | 1318 | if os.path.exists(new_image_path): |
1319 | os.unlink(new_image_path) | 1319 | os.unlink(new_image_path) |
1320 | if os.path.exists(image_path + '.bak'): | 1320 | if os.path.exists(image_path + '.bak'): |
1321 | os.rename(image_path + '.bak', image_path) | 1321 | bb.utils.rename(image_path + '.bak', image_path) |
1322 | 1322 | ||
1323 | def test_wic_ls_ext(self): | 1323 | def test_wic_ls_ext(self): |
1324 | """Test listing content of the ext partition using 'wic ls'""" | 1324 | """Test listing content of the ext partition using 'wic ls'""" |