From: Alexander Kanavin Date: Fri, 2 Dec 2022 16:37:39 +0000 (+0100) Subject: ptest-packagelists.inc: do not run valgrind ptests on 32 bit x86 X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~2380 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9896fc1694c66d827383e385f1954d751b3e7c65;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git ptest-packagelists.inc: do not run valgrind ptests on 32 bit x86 Valgrind build itself with -mpreferred-stack-boundary=2 on that target (and the tests expect that). On the other hand, we enable SSE instructions, which expect things to be aligned on 16 byte boundary (e.g. -mpreferred-stack-boundary=4). This won't be reported at compile time and results in crashes at runtime, e.g. vgdb simply does not work at all and crashes out immediately. I am not sure how to resolve that, or whether we even should, but the issue is reported here: https://bugs.kde.org/show_bug.cgi?id=462553 Signed-off-by: Alexander Kanavin Signed-off-by: Alexandre Belloni --- diff --git a/meta/conf/distro/include/ptest-packagelists.inc b/meta/conf/distro/include/ptest-packagelists.inc index cf1b57e1867..79de9b00ae4 100644 --- a/meta/conf/distro/include/ptest-packagelists.inc +++ b/meta/conf/distro/include/ptest-packagelists.inc @@ -109,6 +109,8 @@ PTESTS_SLOW = "\ PTESTS_SLOW:remove:riscv64 = "valgrind-ptest" PTESTS_PROBLEMS:append:riscv64 = "valgrind-ptest" PTESTS_SLOW:append:libc-musl = " libc-test-ptest" +PTESTS_SLOW:remove:x86 = "valgrind-ptest" +PTESTS_PROBLEMS:append:x86 = "valgrind-ptest" # ruby-ptest \ # Timeout # lz4-ptest \ # Needs a rewrite