[compiler-rt] r343981 - Disable TestCases/pthread_mutexattr_get on NetBSD

Kamil Rytarowski via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 8 10:12:38 PDT 2018


Author: kamil
Date: Mon Oct  8 10:12:38 2018
New Revision: 343981

URL: http://llvm.org/viewvc/llvm-project?rev=343981&view=rev
Log:
Disable TestCases/pthread_mutexattr_get on NetBSD

The pshared feature is unsupported on NetBSD as of today.

Modified:
    compiler-rt/trunk/test/sanitizer_common/TestCases/pthread_mutexattr_get.cc

Modified: compiler-rt/trunk/test/sanitizer_common/TestCases/pthread_mutexattr_get.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/sanitizer_common/TestCases/pthread_mutexattr_get.cc?rev=343981&r1=343980&r2=343981&view=diff
==============================================================================
--- compiler-rt/trunk/test/sanitizer_common/TestCases/pthread_mutexattr_get.cc (original)
+++ compiler-rt/trunk/test/sanitizer_common/TestCases/pthread_mutexattr_get.cc Mon Oct  8 10:12:38 2018
@@ -1,5 +1,8 @@
 // RUN: %clangxx -O0 %s -o %t && %run %t
 
+// pthread_mutexattr_setpshared and pthread_mutexattr_getpshared unavailable
+// UNSUPPORTED: netbsd
+
 #include <assert.h>
 #include <pthread.h>
 




More information about the llvm-commits mailing list