diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-11-19 15:14:11 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-11-20 10:32:16 +0000 |
commit | 33a833960897a082d53fbce06e621635173bc5c1 (patch) | |
tree | 8d0996e98c3c9d45d3680168e7d1e387531a6691 /meta | |
parent | 1805ee68dd12a40678261ddc03aeb409155de88f (diff) | |
download | poky-33a833960897a082d53fbce06e621635173bc5c1.tar.gz |
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.
(From OE-Core rev: 3113fb0812aba96df59fca58fe68b751d1d886e6)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rwxr-xr-x | meta/recipes-kernel/lttng/lttng-tools/run-ptest | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-kernel/lttng/lttng-tools/run-ptest b/meta/recipes-kernel/lttng/lttng-tools/run-ptest index 705030ee53..dbb18820a4 100755 --- a/meta/recipes-kernel/lttng/lttng-tools/run-ptest +++ b/meta/recipes-kernel/lttng/lttng-tools/run-ptest | |||
@@ -3,4 +3,4 @@ | |||
3 | # test plan to raise ERRORs; this is just noise. | 3 | # test plan to raise ERRORs; this is just noise. |
4 | makeargs="LOG_DRIVER_FLAGS=--ignore-exit top_srcdir=$PWD top_builddir=$PWD" | 4 | makeargs="LOG_DRIVER_FLAGS=--ignore-exit top_srcdir=$PWD top_builddir=$PWD" |
5 | make -k -t all >/dev/null 2>&1 | 5 | make -k -t all >/dev/null 2>&1 |
6 | exec make -s $makeargs check 2>/dev/null | 6 | exec make -k -s $makeargs check 2>/dev/null |