Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH] Fixes [YOCTO #15965]
@ 2025-09-16 12:25 Barne Carstensen
  2025-09-16 12:30 ` Patchtest results for " patchtest
                   ` (3 more replies)
  0 siblings, 4 replies; 12+ messages in thread
From: Barne Carstensen @ 2025-09-16 12:25 UTC (permalink / raw)
  To: openembedded-core; +Cc: Barne Carstensen, randy.macleod

Copy all the parselogs-ignores file so that they are always packed into the testexport.tar.gz (even when testsuite parselog is not selected)

Signed-off-by: Barne Carstensen <barne.carstensen@danfoss.com>
CC: randy.macleod@windriver.com
---
 meta/classes-recipe/testexport.bbclass | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta/classes-recipe/testexport.bbclass b/meta/classes-recipe/testexport.bbclass
index 843d777e3b..2f473a8811 100644
--- a/meta/classes-recipe/testexport.bbclass
+++ b/meta/classes-recipe/testexport.bbclass
@@ -79,6 +79,7 @@ def testexport_main(d):
 def copy_needed_files(d, tc):
     import shutil
     import oe.path
+    import glob
 
     from oeqa.utils.package_manager import _get_json_file
     from oeqa.core.utils.test import getSuiteCasesFiles
@@ -120,6 +121,11 @@ def copy_needed_files(d, tc):
                     oe.path.copytree(src, dst)
                 else:
                     shutil.copy2(src, dst)
+    
+    # Copy all parselogs-ignores files
+    parselogs_ignores = glob.glob(os.path.join(corebase_path, 'meta', 'lib', 'oeqa', 'runtime', 'cases', 'parselogs-ignores-*.txt'))
+    for f in parselogs_ignores:
+         shutil.copy2(f, cases_path)
 
     # Copy test data
     image_name = ("%s/%s" % (d.getVar('DEPLOY_DIR_IMAGE'),


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

end of thread, other threads:[~2025-09-18  8:18 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-16 12:25 [PATCH] Fixes [YOCTO #15965] Barne Carstensen
2025-09-16 12:30 ` Patchtest results for " patchtest
2025-09-16 13:09 ` [OE-core] " Mikko Rapeli
     [not found] ` <1865C555FCF7D165.11775@lists.openembedded.org>
2025-09-16 13:41   ` Mikko Rapeli
2025-09-17  7:26     ` Barne Carstensen
2025-09-17  8:33       ` Quentin Schulz
     [not found]         ` <DB9PR01MB72102C7EF8F8862F583523158717A@DB9PR01MB7210.eurprd01.prod.exchangelabs.com>
2025-09-17  9:24           ` Quentin Schulz
2025-09-18  8:18             ` Barne Carstensen
2025-09-17  9:21       ` Mikko Rapeli
2025-09-17  9:46 ` Mikko Rapeli
2025-09-18  8:05   ` Barne Carstensen
2025-09-18  8:09     ` Mikko Rapeli

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