[PATCH] D41011: Disable test/msan/tsearch.cc on NetBSD

Kamil Rytarowski via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Dec 8 08:44:40 PST 2017


krytarowski created this revision.
krytarowski added a project: Sanitizers.

This test uses GNU-specific extension to libc: tdestroy() and as-is is not compatible with NetBSD.

Sponsored by <The NetBSD Foundation>


Repository:
  rL LLVM

https://reviews.llvm.org/D41011

Files:
  test/msan/tsearch.cc


Index: test/msan/tsearch.cc
===================================================================
--- test/msan/tsearch.cc
+++ test/msan/tsearch.cc
@@ -1,5 +1,8 @@
 // RUN: %clangxx_msan -O0 -g %s -o %t && %run %t
 
+// tdestroy is a GNU extension
+// UNSUPPORTED: netbsd
+
 #include <assert.h>
 #include <search.h>
 #include <stdlib.h>


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D41011.126158.patch
Type: text/x-patch
Size: 335 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20171208/62c9d38f/attachment.bin>


More information about the llvm-commits mailing list