[tsan] Disable tests flaky on PPC with COMPILER_RT_DEBUG

Workaround for https://github.com/google/sanitizers/issues/1792
This commit is contained in:
Vitaly Buka
2024-09-06 16:33:09 -07:00
parent d1b9adb05c
commit 3a13c5a286
3 changed files with 11 additions and 1 deletions

View File

@@ -2,6 +2,10 @@
// Test that a signal is not delivered when it is blocked.
// FIXME: Very flaky on PPC with COMPILER_RT_DEBUG.
// https://github.com/google/sanitizers/issues/1792
// UNSUPPORTED: !compiler-rt-optimized && ppc
#include "test.h"
#include <semaphore.h>
#include <signal.h>

View File

@@ -1,5 +1,10 @@
// RUN: %clangxx_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s
// UNSUPPORTED: darwin
// FIXME: Very flaky on PPC with COMPILER_RT_DEBUG.
// https://github.com/google/sanitizers/issues/1792
// UNSUPPORTED: !compiler-rt-optimized && ppc
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>

View File

@@ -1,7 +1,8 @@
// RUN: %clangxx_tsan %s -o %t && %run %t 2>&1 | FileCheck %s
// UNSUPPORTED: darwin
// It's very flaky on PPC with COMPILER_RT_DEBUG.
// FIXME: Very flaky on PPC with COMPILER_RT_DEBUG.
// https://github.com/google/sanitizers/issues/1792
// UNSUPPORTED: !compiler-rt-optimized && ppc
// Test case for https://github.com/google/sanitizers/issues/1540