From: Ross Burton Date: Fri, 22 Oct 2021 09:49:43 +0000 (+0100) Subject: strace: show test suite log on failure X-Git-Tag: yocto-3.3.4~11 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=f59a20574046a2027746010311129342442857f0;p=openembedded-core.git strace: show test suite log on failure If the tests fail, dump the log so we can see the failures. Signed-off-by: Ross Burton Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie (cherry picked from commit 3154a65039831b1e041217707fdd6ca042f588fb) Signed-off-by: Anuj Mittal --- diff --git a/meta/recipes-devtools/strace/strace/run-ptest b/meta/recipes-devtools/strace/strace/run-ptest index 3a51fb0be9..02bb91e07f 100755 --- a/meta/recipes-devtools/strace/strace/run-ptest +++ b/meta/recipes-devtools/strace/strace/run-ptest @@ -1,6 +1,15 @@ #!/bin/sh + +set -u + export TIMEOUT_DURATION=240 chown nobody tests chown nobody tests/* chown nobody ../ptest + su nobody -c "make -B -C tests -k test-suite.log" +res=$? +if [ $res -ne 0 ]; then + cat tests/test-suite.log +fi +exit $res