From: LLVM Packaging Team Date: Fri, 4 Nov 2022 18:36:56 +0000 (+0000) Subject: test-disable-lldb-i386 X-Git-Tag: archive/raspbian/1%14.0.6-8+rpi1^2~20 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=a180346bcf4b60700b7168beed196482a8822a57;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)