llvm-toolchain/debian/patches/test-disable-lldb-i386.diff
2021-10-11 14:39:39 +02:00

25 lines
1013 B
Diff

Index: llvm-toolchain-13-13.0.0~+rc3/integration-test-suite/tests/basic_lldb.c
===================================================================
--- llvm-toolchain-13-13.0.0~+rc3.orig/integration-test-suite/tests/basic_lldb.c
+++ llvm-toolchain-13-13.0.0~+rc3/integration-test-suite/tests/basic_lldb.c
@@ -1,6 +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: i686, i386
int main() {
int a=0;
Index: llvm-toolchain-13-13.0.0~+rc3/integration-test-suite/tests/basic_lldb2.cpp
===================================================================
--- llvm-toolchain-13-13.0.0~+rc3.orig/integration-test-suite/tests/basic_lldb2.cpp
+++ llvm-toolchain-13-13.0.0~+rc3/integration-test-suite/tests/basic_lldb2.cpp
@@ -1,6 +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: i686, i386
#include <vector>
int main (void)