diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-05-26 21:50:10 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-05-27 10:22:32 +0100 |
commit | 0156afb7e24172aa7a7e3a044805bf1e006cb46b (patch) | |
tree | 77c876fca098a6adfe9851c7706a01c7c3c49122 /meta/recipes-extended | |
parent | f08831c5a977ec5ba0ef1338abd990901dc160a7 (diff) | |
download | poky-0156afb7e24172aa7a7e3a044805bf1e006cb46b.tar.gz |
ltp: Exclude the memcg_stress tests due to timeout problems
This test runs for 900s, we often see tests killed after 300s without
output which makes the test results unreliable and inconsistent. The
easiest solution for now is to skip this long running test, patching
it out wth sed.
(From OE-Core rev: 0739a8901140c05d037517ffd89382f151ba627c)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r-- | meta/recipes-extended/ltp/ltp_20200515.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-extended/ltp/ltp_20200515.bb b/meta/recipes-extended/ltp/ltp_20200515.bb index 0304a40185..67c7590320 100644 --- a/meta/recipes-extended/ltp/ltp_20200515.bb +++ b/meta/recipes-extended/ltp/ltp_20200515.bb | |||
@@ -72,6 +72,10 @@ do_install(){ | |||
72 | -e 's@[^ ]*-fdebug-prefix-map=[^ "]*@@g' \ | 72 | -e 's@[^ ]*-fdebug-prefix-map=[^ "]*@@g' \ |
73 | -e 's@[^ ]*-fmacro-prefix-map=[^ "]*@@g' \ | 73 | -e 's@[^ ]*-fmacro-prefix-map=[^ "]*@@g' \ |
74 | -e 's@[^ ]*--sysroot=[^ "]*@@g' | 74 | -e 's@[^ ]*--sysroot=[^ "]*@@g' |
75 | |||
76 | # The controllers memcg_stree test seems to cause us hangs and takes 900s | ||
77 | # (maybe we expect more regular output?), anyhow, skip it | ||
78 | sed -e '/^memcg_stress/d' -i ${D}${prefix}/runtest/controllers | ||
75 | } | 79 | } |
76 | 80 | ||
77 | RDEPENDS_${PN} = "\ | 81 | RDEPENDS_${PN} = "\ |