Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH] oe-selftest: Fix for test_rm_old_image
@ 2014-02-27 13:53 Corneliu Stoicescu
  2014-02-27 13:57 ` Alexandru Palalau
  0 siblings, 1 reply; 3+ messages in thread
From: Corneliu Stoicescu @ 2014-02-27 13:53 UTC (permalink / raw)
  To: openembedded-core

After recent changes in poky this test was not working as it should.
This commit fixes and improves the test logic.

Signed-off-by: Corneliu Stoicescu <corneliux.stoicescu@intel.com>
---
 meta/lib/oeqa/selftest/buildoptions.py | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/meta/lib/oeqa/selftest/buildoptions.py b/meta/lib/oeqa/selftest/buildoptions.py
index ef6579b..93b02cf 100644
--- a/meta/lib/oeqa/selftest/buildoptions.py
+++ b/meta/lib/oeqa/selftest/buildoptions.py
@@ -26,10 +26,16 @@ class ImageOptionsTests(oeSelfTest):
         bitbake("core-image-minimal")
         deploydir = get_bb_var("DEPLOY_DIR_IMAGE", target="core-image-minimal")
         imagename = get_bb_var("IMAGE_LINK_NAME", target="core-image-minimal")
-        oldimgpath = os.path.realpath(os.path.join(deploydir, imagename + ".ext3"))
+        deploydir_files = os.listdir(deploydir)
+        track_original_files = []
+        for image_file in deploydir_files:
+            if imagename in image_file and os.path.islink(os.path.join(deploydir, image_file)):
+                track_original_files.append(os.path.realpath(os.path.join(deploydir, image_file)))
         self.append_config("RM_OLD_IMAGE = \"1\"")
-        bitbake("core-image-minimal")
-        self.assertFalse(os.path.exists(oldimgpath), msg="Old image path still exists: %s" % oldimgpath)
+        bitbake("-C rootfs core-image-minimal")
+        deploydir_files = os.listdir(deploydir)
+        remaining_not_expected = [path for path in track_original_files if os.path.basename(path) in deploydir_files]
+        self.assertFalse(remaining_not_expected, msg="\nThe following image files ware not removed: %s" % ', '.join(map(str, remaining_not_expected)))
 
     def test_ccache_tool(self):
         bitbake("ccache-native")
-- 
1.8.3.2



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] oe-selftest: Fix for test_rm_old_image
  2014-02-27 13:53 [PATCH] oe-selftest: Fix for test_rm_old_image Corneliu Stoicescu
@ 2014-02-27 13:57 ` Alexandru Palalau
  2014-02-27 15:02   ` Alexandru Palalau
  0 siblings, 1 reply; 3+ messages in thread
From: Alexandru Palalau @ 2014-02-27 13:57 UTC (permalink / raw)
  To: Corneliu Stoicescu, openembedded-core

On 2/27/2014 3:53 PM, Corneliu Stoicescu wrote:
> After recent changes in poky this test was not working as it should.
> This commit fixes and improves the test logic.
>
> Signed-off-by: Corneliu Stoicescu <corneliux.stoicescu@intel.com>
> ---
>   meta/lib/oeqa/selftest/buildoptions.py | 12 +++++++++---
>   1 file changed, 9 insertions(+), 3 deletions(-)
>
> diff --git a/meta/lib/oeqa/selftest/buildoptions.py b/meta/lib/oeqa/selftest/buildoptions.py
> index ef6579b..93b02cf 100644
> --- a/meta/lib/oeqa/selftest/buildoptions.py
> +++ b/meta/lib/oeqa/selftest/buildoptions.py
> @@ -26,10 +26,16 @@ class ImageOptionsTests(oeSelfTest):
>           bitbake("core-image-minimal")
>           deploydir = get_bb_var("DEPLOY_DIR_IMAGE", target="core-image-minimal")
>           imagename = get_bb_var("IMAGE_LINK_NAME", target="core-image-minimal")
> -        oldimgpath = os.path.realpath(os.path.join(deploydir, imagename + ".ext3"))
> +        deploydir_files = os.listdir(deploydir)
> +        track_original_files = []
> +        for image_file in deploydir_files:
> +            if imagename in image_file and os.path.islink(os.path.join(deploydir, image_file)):
> +                track_original_files.append(os.path.realpath(os.path.join(deploydir, image_file)))
>           self.append_config("RM_OLD_IMAGE = \"1\"")
> -        bitbake("core-image-minimal")
> -        self.assertFalse(os.path.exists(oldimgpath), msg="Old image path still exists: %s" % oldimgpath)
> +        bitbake("-C rootfs core-image-minimal")
> +        deploydir_files = os.listdir(deploydir)
The line above appears twice.
> +        remaining_not_expected = [path for path in track_original_files if os.path.basename(path) in deploydir_files]
> +        self.assertFalse(remaining_not_expected, msg="\nThe following image files ware not removed: %s" % ', '.join(map(str, remaining_not_expected)))
>
>       def test_ccache_tool(self):
>           bitbake("ccache-native")
>

Cheers,

-- 
Alexandru Palalau


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] oe-selftest: Fix for test_rm_old_image
  2014-02-27 13:57 ` Alexandru Palalau
@ 2014-02-27 15:02   ` Alexandru Palalau
  0 siblings, 0 replies; 3+ messages in thread
From: Alexandru Palalau @ 2014-02-27 15:02 UTC (permalink / raw)
  To: Corneliu Stoicescu, openembedded-core

My bad, missed a line while reading the patch.
Seems ok.
On 2/27/2014 3:57 PM, Alexandru Palalau wrote:
> On 2/27/2014 3:53 PM, Corneliu Stoicescu wrote:
>> After recent changes in poky this test was not working as it should.
>> This commit fixes and improves the test logic.
>>
>> Signed-off-by: Corneliu Stoicescu <corneliux.stoicescu@intel.com>
>> ---
>>   meta/lib/oeqa/selftest/buildoptions.py | 12 +++++++++---
>>   1 file changed, 9 insertions(+), 3 deletions(-)
>>
>> diff --git a/meta/lib/oeqa/selftest/buildoptions.py
>> b/meta/lib/oeqa/selftest/buildoptions.py
>> index ef6579b..93b02cf 100644
>> --- a/meta/lib/oeqa/selftest/buildoptions.py
>> +++ b/meta/lib/oeqa/selftest/buildoptions.py
>> @@ -26,10 +26,16 @@ class ImageOptionsTests(oeSelfTest):
>>           bitbake("core-image-minimal")
>>           deploydir = get_bb_var("DEPLOY_DIR_IMAGE",
>> target="core-image-minimal")
>>           imagename = get_bb_var("IMAGE_LINK_NAME",
>> target="core-image-minimal")
>> -        oldimgpath = os.path.realpath(os.path.join(deploydir,
>> imagename + ".ext3"))
>> +        deploydir_files = os.listdir(deploydir)
>> +        track_original_files = []
>> +        for image_file in deploydir_files:
>> +            if imagename in image_file and
>> os.path.islink(os.path.join(deploydir, image_file)):
>> +
>> track_original_files.append(os.path.realpath(os.path.join(deploydir,
>> image_file)))
>>           self.append_config("RM_OLD_IMAGE = \"1\"")
>> -        bitbake("core-image-minimal")
>> -        self.assertFalse(os.path.exists(oldimgpath), msg="Old image
>> path still exists: %s" % oldimgpath)
>> +        bitbake("-C rootfs core-image-minimal")
>> +        deploydir_files = os.listdir(deploydir)
> The line above appears twice.
>> +        remaining_not_expected = [path for path in
>> track_original_files if os.path.basename(path) in deploydir_files]
>> +        self.assertFalse(remaining_not_expected, msg="\nThe following
>> image files ware not removed: %s" % ', '.join(map(str,
>> remaining_not_expected)))
>>
>>       def test_ccache_tool(self):
>>           bitbake("ccache-native")
>>
>
> Cheers,
>


-- 
Alexandru Palalau


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-02-27 15:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-27 13:53 [PATCH] oe-selftest: Fix for test_rm_old_image Corneliu Stoicescu
2014-02-27 13:57 ` Alexandru Palalau
2014-02-27 15:02   ` Alexandru Palalau

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox