summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2022-12-02 17:37:39 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-12-05 22:28:13 +0000
commit01c2243c10eb6c27abfd1af883cc1e72a9ebd634 (patch)
tree148520ccdd58055fa63ea5cde5fdd5db2416b7f0 /meta
parentb0351d61721669fafeaeb1b7217709e38e3f2266 (diff)
downloadpoky-01c2243c10eb6c27abfd1af883cc1e72a9ebd634.tar.gz
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 (From OE-Core rev: 9896fc1694c66d827383e385f1954d751b3e7c65) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/conf/distro/include/ptest-packagelists.inc2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/conf/distro/include/ptest-packagelists.inc b/meta/conf/distro/include/ptest-packagelists.inc
index cf1b57e186..79de9b00ae 100644
--- a/meta/conf/distro/include/ptest-packagelists.inc
+++ b/meta/conf/distro/include/ptest-packagelists.inc
@@ -109,6 +109,8 @@ PTESTS_SLOW = "\
109PTESTS_SLOW:remove:riscv64 = "valgrind-ptest" 109PTESTS_SLOW:remove:riscv64 = "valgrind-ptest"
110PTESTS_PROBLEMS:append:riscv64 = "valgrind-ptest" 110PTESTS_PROBLEMS:append:riscv64 = "valgrind-ptest"
111PTESTS_SLOW:append:libc-musl = " libc-test-ptest" 111PTESTS_SLOW:append:libc-musl = " libc-test-ptest"
112PTESTS_SLOW:remove:x86 = "valgrind-ptest"
113PTESTS_PROBLEMS:append:x86 = "valgrind-ptest"
112 114
113# ruby-ptest \ # Timeout 115# ruby-ptest \ # Timeout
114# lz4-ptest \ # Needs a rewrite 116# lz4-ptest \ # Needs a rewrite