diff options
-rw-r--r-- | meta/lib/oeqa/selftest/buildoptions.py | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/meta/lib/oeqa/selftest/buildoptions.py b/meta/lib/oeqa/selftest/buildoptions.py index ef6579b335..93b02cf8a2 100644 --- a/meta/lib/oeqa/selftest/buildoptions.py +++ b/meta/lib/oeqa/selftest/buildoptions.py | |||
@@ -26,10 +26,16 @@ class ImageOptionsTests(oeSelfTest): | |||
26 | bitbake("core-image-minimal") | 26 | bitbake("core-image-minimal") |
27 | deploydir = get_bb_var("DEPLOY_DIR_IMAGE", target="core-image-minimal") | 27 | deploydir = get_bb_var("DEPLOY_DIR_IMAGE", target="core-image-minimal") |
28 | imagename = get_bb_var("IMAGE_LINK_NAME", target="core-image-minimal") | 28 | imagename = get_bb_var("IMAGE_LINK_NAME", target="core-image-minimal") |
29 | oldimgpath = os.path.realpath(os.path.join(deploydir, imagename + ".ext3")) | 29 | deploydir_files = os.listdir(deploydir) |
30 | track_original_files = [] | ||
31 | for image_file in deploydir_files: | ||
32 | if imagename in image_file and os.path.islink(os.path.join(deploydir, image_file)): | ||
33 | track_original_files.append(os.path.realpath(os.path.join(deploydir, image_file))) | ||
30 | self.append_config("RM_OLD_IMAGE = \"1\"") | 34 | self.append_config("RM_OLD_IMAGE = \"1\"") |
31 | bitbake("core-image-minimal") | 35 | bitbake("-C rootfs core-image-minimal") |
32 | self.assertFalse(os.path.exists(oldimgpath), msg="Old image path still exists: %s" % oldimgpath) | 36 | deploydir_files = os.listdir(deploydir) |
37 | remaining_not_expected = [path for path in track_original_files if os.path.basename(path) in deploydir_files] | ||
38 | self.assertFalse(remaining_not_expected, msg="\nThe following image files ware not removed: %s" % ', '.join(map(str, remaining_not_expected))) | ||
33 | 39 | ||
34 | def test_ccache_tool(self): | 40 | def test_ccache_tool(self): |
35 | bitbake("ccache-native") | 41 | bitbake("ccache-native") |