From: LLVM Packaging Team Date: Fri, 17 Feb 2023 11:57:29 +0000 (+0000) Subject: test-disable-lldb-i386 X-Git-Tag: archive/raspbian/1%14.0.6-12+rpi1^2~24 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=2fe6aa1aa85a8547e03e51f35eecacd02b515043;p=llvm-toolchain-14.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)