summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Rytarowski <n54@gmx.com>2018-10-08 17:12:38 +0000
committerKamil Rytarowski <n54@gmx.com>2018-10-08 17:12:38 +0000
commit31e7538b42a877ee6b447c8b5d5e35d4619e76d1 (patch)
tree4dfe5d2498423618b62ef66ea52ca379330c1181
parent1f3b6317cbf18d413007d72217740dd656ecd0ff (diff)
Disable TestCases/pthread_mutexattr_get on NetBSD
The pshared feature is unsupported on NetBSD as of today.
-rw-r--r--compiler-rt/test/sanitizer_common/TestCases/pthread_mutexattr_get.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler-rt/test/sanitizer_common/TestCases/pthread_mutexattr_get.cc b/compiler-rt/test/sanitizer_common/TestCases/pthread_mutexattr_get.cc
index 26060f395c1..742ae72c41b 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/pthread_mutexattr_get.cc
+++ b/compiler-rt/test/sanitizer_common/TestCases/pthread_mutexattr_get.cc
@@ -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>