[oe-commits] [openembedded-core] 36/42: oeqa/selftest: check if rm_work is enabled

git at git.openembedded.org git at git.openembedded.org
Mon Jul 30 11:45:40 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository openembedded-core.

commit dde7e2f590834aa8034f1371954f9b4fbc7a60b7
Author: Anuj Mittal <anuj.mittal at intel.com>
AuthorDate: Sat Jul 28 16:53:16 2018 +0800

    oeqa/selftest: check if rm_work is enabled
    
    rm_work if enabled leads to some tests failing that rely on artifacts
    being present. Check if rm_work.bbclass is included and show an error
    and exit if it is.
    
    Fixes [YOCTO #12694]
    
    Signed-off-by: Anuj Mittal <anuj.mittal at intel.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/lib/oeqa/selftest/context.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/meta/lib/oeqa/selftest/context.py b/meta/lib/oeqa/selftest/context.py
index 16812ba..3a70f9e 100644
--- a/meta/lib/oeqa/selftest/context.py
+++ b/meta/lib/oeqa/selftest/context.py
@@ -187,6 +187,10 @@ class OESelftestTestContextExecutor(OETestContextExecutor):
             self.tc.logger.error("You have buildhistory enabled already and this isn't recommended for selftest, please disable it first.")
             raise OEQAPreRun
 
+        if "rm_work.bbclass" in self.tc.td["BBINCLUDED"]:
+            self.tc.logger.error("You have rm_work enabled which isn't recommended while running oe-selftest. Please disable it before continuing.")
+            raise OEQAPreRun
+
         if "PRSERV_HOST" in self.tc.td:
             self.tc.logger.error("Please unset PRSERV_HOST in order to run oe-selftest")
             raise OEQAPreRun

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list