[compiler-rt] r345490 - Mark test/tsan/ignore_lib5 as unsupported for NetBSD

Kamil Rytarowski via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 29 01:42:46 PDT 2018


Author: kamil
Date: Mon Oct 29 01:42:46 2018
New Revision: 345490

URL: http://llvm.org/viewvc/llvm-project?rev=345490&view=rev
Log:
Mark test/tsan/ignore_lib5 as unsupported for NetBSD

ReadProcMaps() on NetBSD does not handle >=1MB of memory layout information.

Modified:
    compiler-rt/trunk/test/tsan/ignore_lib5.cc

Modified: compiler-rt/trunk/test/tsan/ignore_lib5.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/tsan/ignore_lib5.cc?rev=345490&r1=345489&r2=345490&view=diff
==============================================================================
--- compiler-rt/trunk/test/tsan/ignore_lib5.cc (original)
+++ compiler-rt/trunk/test/tsan/ignore_lib5.cc Mon Oct 29 01:42:46 2018
@@ -18,6 +18,9 @@
 //   matched against 2 libraries: '/libignore_lib1.so' and '/libignore_lib1.so'
 // This was caused by non-atomicity of reading of /proc/self/maps.
 
+// ReadProcMaps() on NetBSD does not handle >=1MB of memory layout information
+// UNSUPPORTED: netbsd
+
 #ifndef LIB
 
 #include <dlfcn.h>
@@ -78,4 +81,3 @@ int main(int argc, char **argv) {
 
 // CHECK-WITHSUPP-NOT: WARNING: ThreadSanitizer: data race
 // CHECK-WITHSUPP: OK
-




More information about the llvm-commits mailing list