Disable a tsan and two lldb tests on i386

This commit is contained in:
Sylvestre Ledru 2021-10-11 14:39:27 +02:00
parent df3fdc5cf5
commit 21595aecfb
3 changed files with 26 additions and 1 deletions

2
debian/changelog vendored
View File

@ -2,7 +2,7 @@ llvm-toolchain-13 (1:13.0.0-3) unstable; urgency=medium
* libc++-13-dev should depends on libunwind-13-dev * libc++-13-dev should depends on libunwind-13-dev
(Closes: #995810) (Closes: #995810)
* Disable a tsan test on i386 * Disable a tsan and two lldb tests on i386
-- Sylvestre Ledru <sylvestre@debian.org> Wed, 06 Oct 2021 12:52:10 +0200 -- Sylvestre Ledru <sylvestre@debian.org> Wed, 06 Oct 2021 12:52:10 +0200

View File

@ -145,3 +145,4 @@ scan-build-py-fix-default-bin.diff
libclc-llvm-spirv.diff libclc-llvm-spirv.diff
omp-riscv64.patch omp-riscv64.patch
test-disable-tsan-i386.diff test-disable-tsan-i386.diff
test-disable-lldb-i386.diff

View File

@ -0,0 +1,24 @@
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)