From: LLVM Packaging Team Date: Wed, 18 Dec 2024 09:01:43 +0000 (+0100) Subject: test-disable-lldb-i386 X-Git-Tag: archive/raspbian/1%19.1.7-1+rpi1^2^2~28 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=ccd1c5cf4c2c38fb8d5e4f888b43ff7279309e41;p=llvm-toolchain-19.git test-disable-lldb-i386 =================================================================== Gbp-Pq: Topic lldb Gbp-Pq: Name test-disable-lldb-i386.diff --- diff --git a/integration-test-suite/tests/basic_lldb.c b/integration-test-suite/tests/basic_lldb.c index 51c33ac7cb..c9d4f06a83 100644 --- a/integration-test-suite/tests/basic_lldb.c +++ b/integration-test-suite/tests/basic_lldb.c @@ -1,7 +1,7 @@ // RUN: %clang -g -o %t %s // RUN: %lldb -s %S/basic_lldb.in %t | grep "main at basic_lldb.c:" // REQUIRES: lldb, clang -// XFAIL: ppc64 +// XFAIL: ppc64, i686, i386 int main() { int a=0; diff --git a/integration-test-suite/tests/basic_lldb2.cpp b/integration-test-suite/tests/basic_lldb2.cpp index 15a77636cf..7542c8ed5d 100644 --- a/integration-test-suite/tests/basic_lldb2.cpp +++ b/integration-test-suite/tests/basic_lldb2.cpp @@ -1,7 +1,7 @@ // RUN: %clangxx -g -o %t %s // RUN: %lldb -s %S/basic_lldb2.in %t | grep "stop reason = step over" // REQUIRES: lldb, clangxx -// XFAIL: ppc64 +// XFAIL: ppc64, i686, i386 #include int main (void)