From f099302efe8f222c3e4ae3604429f5ede4fd8c67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?An=C3=ADbal=20Lim=C3=B3n?= Date: Mon, 5 Dec 2016 17:04:42 -0600 Subject: oeqa: Fix files handling on runtime tests. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Common files was move to oeqa/files from oeqa/runtime/files because the same files are used across Runtime,SDK,eSDK tests. Signed-off-by: Aníbal Limón --- meta/classes/testexport.bbclass | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'meta/classes') diff --git a/meta/classes/testexport.bbclass b/meta/classes/testexport.bbclass index e287f5a913..00cf24e735 100644 --- a/meta/classes/testexport.bbclass +++ b/meta/classes/testexport.bbclass @@ -87,6 +87,7 @@ def exportTests(d,tc): # - the contents of oeqa/utils and oeqa/runtime/files # - oeqa/oetest.py and oeqa/runexport.py (this will get copied to exportpath not exportpath/oeqa) # - __init__.py files + bb.utils.mkdirhier(os.path.join(exportpath, "oeqa/files")) bb.utils.mkdirhier(os.path.join(exportpath, "oeqa/runtime/files")) bb.utils.mkdirhier(os.path.join(exportpath, "oeqa/utils")) # copy test modules, this should cover tests in other layers too @@ -124,6 +125,10 @@ def exportTests(d,tc): for f in files: if f.endswith(".py"): shutil.copy2(os.path.join(root, f), os.path.join(exportpath, "oeqa/utils")) + # copy oeqa/files/* + for root, dirs, files in os.walk(os.path.join(oeqadir, "files")): + for f in files: + shutil.copy2(os.path.join(root, f), os.path.join(exportpath, "oeqa/files")) # copy oeqa/runtime/files/* for root, dirs, files in os.walk(os.path.join(oeqadir, "runtime/files")): for f in files: -- cgit v1.2.3