Mark breaking TSan tests on NetBSD with XFAIL

Failing tests:
 - dtls
 - ignored-interceptors-mmap
 - mutex_lock_destroyed

llvm-svn: 345595
This commit is contained in:
Kamil Rytarowski 2018-10-30 13:28:32 +00:00
parent a32a2e3443
commit 647ece0144
3 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,7 @@
// RUN: %clang_tsan %s -o %t
// RUN: %clang_tsan %s -DBUILD_SO -fPIC -o %t-so.so -shared
// RUN: %run %t 2>&1 | FileCheck %s
// XFAIL: netbsd
// Test that tsan cleans up dynamic TLS memory between reuse.

View File

@ -1,7 +1,7 @@
// RUN: %clangxx_tsan -O0 %s -o %t
// RUN: not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-NORMAL
// RUN: %env_tsan_opts=ignore_interceptors_accesses=1 %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-IGNORE
// XFAIL: freebsd
// XFAIL: freebsd,netbsd
#include <errno.h>
#include <sys/mman.h>

View File

@ -2,6 +2,9 @@
// RUN: %deflake %run %t | FileCheck %s
// RUN: %deflake %run %t 1 | FileCheck %s
// The pthread_mutex_lock interceptor assumes incompatible internals w/ NetBSD
// XFAIL: netbsd
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>