All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] gcc-runtime: do_check should execute before do_build
@ 2021-07-30 19:03 bkylerussell
  2021-07-30 21:16 ` [OE-core] " Christopher Larson
  0 siblings, 1 reply; 4+ messages in thread
From: bkylerussell @ 2021-07-30 19:03 UTC (permalink / raw)
  To: openembedded-core; +Cc: Kyle Russell

Otherwise, when rm_work is used, do_check may not execute before rm_work
causing do_check failures if the workdir has been removed underneath it.

Signed-off-by: Kyle Russell <bkylerussell@gmail.com>
---
 meta/recipes-devtools/gcc/gcc-runtime.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/gcc/gcc-runtime.inc b/meta/recipes-devtools/gcc/gcc-runtime.inc
index 59d9a24686..607971adca 100644
--- a/meta/recipes-devtools/gcc/gcc-runtime.inc
+++ b/meta/recipes-devtools/gcc/gcc-runtime.inc
@@ -314,5 +314,5 @@ do_check() {
 
     oe_runmake -i ${MAKE_CHECK_TARGETS} RUNTESTFLAGS="${MAKE_CHECK_RUNTESTFLAGS}"
 }
-addtask check after do_compile do_populate_sysroot
+addtask check after do_compile do_populate_sysroot before do_build
 
-- 
2.25.1


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

end of thread, other threads:[~2021-07-31  2:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-30 19:03 [PATCH] gcc-runtime: do_check should execute before do_build bkylerussell
2021-07-30 21:16 ` [OE-core] " Christopher Larson
2021-07-30 22:06   ` Richard Purdie
2021-07-31  2:37     ` bkylerussell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.