aboutsummaryrefslogtreecommitdiff
path: root/test/tsan/map32bit.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/tsan/map32bit.cc')
-rw-r--r--test/tsan/map32bit.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/tsan/map32bit.cc b/test/tsan/map32bit.cc
index d9a04655ddca..0411f29a9504 100644
--- a/test/tsan/map32bit.cc
+++ b/test/tsan/map32bit.cc
@@ -5,10 +5,15 @@
#include <sys/mman.h>
// Test for issue:
-// https://code.google.com/p/thread-sanitizer/issues/detail?id=5
+// https://github.com/google/sanitizers/issues/412
// MAP_32BIT flag for mmap is supported only for x86_64.
// XFAIL: mips64
+// XFAIL: aarch64
+// XFAIL: powerpc64
+
+// MAP_32BIT doesn't exist on OS X.
+// UNSUPPORTED: darwin
void *Thread(void *ptr) {
*(int*)ptr = 42;