[oe-commits] [openembedded-core] 02/15: lttng-tools: Improve ptest robustness

git at git.openembedded.org git at git.openembedded.org
Tue Nov 20 10:32:58 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 3113fb0812aba96df59fca58fe68b751d1d886e6
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Mon Nov 19 15:14:11 2018 +0000

    lttng-tools: Improve ptest robustness
    
    There are some fatal make errors that occur from the current ptest
    for lttng-tools however since other tests are successful, those make
    build failures were being ignored.
    
    When upgrading, the order of test execution changed and the ptest failed
    fatally straight away with the same errors.
    
    Passing -k to make means it will try and run all the tests making the
    test suite run more consistently over all lttng-tools versions.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-kernel/lttng/lttng-tools/run-ptest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-kernel/lttng/lttng-tools/run-ptest b/meta/recipes-kernel/lttng/lttng-tools/run-ptest
index 705030e..dbb1882 100755
--- a/meta/recipes-kernel/lttng/lttng-tools/run-ptest
+++ b/meta/recipes-kernel/lttng/lttng-tools/run-ptest
@@ -3,4 +3,4 @@
 # test plan to raise ERRORs; this is just noise.
 makeargs="LOG_DRIVER_FLAGS=--ignore-exit top_srcdir=$PWD top_builddir=$PWD"
 make -k -t all >/dev/null 2>&1
-exec make -s $makeargs check 2>/dev/null
+exec make -k -s $makeargs check 2>/dev/null

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


More information about the Openembedded-commits mailing list