Disable a tsan test on i386

This commit is contained in:
Sylvestre Ledru 2021-10-11 14:36:58 +02:00
parent 103cb1357c
commit df3fdc5cf5
3 changed files with 15 additions and 0 deletions

1
debian/changelog vendored
View File

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

View File

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

View File

@ -0,0 +1,13 @@
Index: llvm-toolchain-13_13.0.0~+rc1/integration-test-suite/tests/test_tsan.c
===================================================================
--- llvm-toolchain-13_13.0.0~+rc1.orig/integration-test-suite/tests/test_tsan.c
+++ llvm-toolchain-13_13.0.0~+rc1/integration-test-suite/tests/test_tsan.c
@@ -5,7 +5,7 @@
// RUN: %llvm-nm %t | grep __tsan
// RUN: env TSAN_OPTIONS="log_path=stdout:exitcode=0" %t 2>&1 > %t.out
// RUN: grep -q "data race" %t.out
-// XFAIL: arm
+// XFAIL: arm, i686, i386
#include <pthread.h>
#include <stdio.h>