From: LLVM Packaging Team Date: Mon, 23 Sep 2024 11:23:31 +0000 (+0200) Subject: test-disable-lldb-i386 X-Git-Tag: archive/raspbian/1%18.1.8-12+rpi1~32 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=de07cb5f79ce24f7eb13d4332deb4242e26f3fb1;p=llvm-toolchain-18.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)