From: LLVM Packaging Team Date: Sun, 1 Jan 2023 14:46:39 +0000 (+0000) Subject: test-disable-lldb-i386 X-Git-Tag: archive/raspbian/1%16.0.6-15+rpi1~4^2~25 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=27b68c79ae815ddb1b9ec34f8eba1ec8ab164bf4;p=llvm-toolchain-16.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)