[compiler-rt] r324810 - Mark the textdomain.cc test as unsupported on BSDs

Kamil Rytarowski via llvm-commits llvm-commits at lists.llvm.org
Sat Feb 10 06:36:55 PST 2018


Author: kamil
Date: Sat Feb 10 06:36:55 2018
New Revision: 324810

URL: http://llvm.org/viewvc/llvm-project?rev=324810&view=rev
Log:
Mark the textdomain.cc test as unsupported on BSDs

textdomain is a part of -lintl on BSDs. In GLIBC it's in libc.

We assume that -lintl will need to be rebuilt with sanitizers
in order to sanitize programs using its features.

This is a proper continuation of D41013.

The original patch has been reverted (adding -lintl).

Modified:
    compiler-rt/trunk/test/msan/textdomain.cc

Modified: compiler-rt/trunk/test/msan/textdomain.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/textdomain.cc?rev=324810&r1=324809&r2=324810&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/textdomain.cc (original)
+++ compiler-rt/trunk/test/msan/textdomain.cc Sat Feb 10 06:36:55 2018
@@ -1,4 +1,5 @@
 // RUN: %clangxx_msan -O0 -g %s -o %t && %run %t
+// UNSUPPORTED: netbsd, freebsd
 
 #include <libintl.h>
 #include <stdio.h>




More information about the llvm-commits mailing list