[libcxx] r245922 - Mark test as XFAIL with MSAN until D12311 gets committed

Eric Fiselier via cfe-commits cfe-commits at lists.llvm.org
Mon Aug 24 21:35:57 PDT 2015


Author: ericwf
Date: Mon Aug 24 23:35:55 2015
New Revision: 245922

URL: http://llvm.org/viewvc/llvm-project?rev=245922&view=rev
Log:
Mark test as XFAIL with MSAN until D12311 gets committed

Modified:
    libcxx/trunk/test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/wchar_t_out.pass.cpp

Modified: libcxx/trunk/test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/wchar_t_out.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/wchar_t_out.pass.cpp?rev=245922&r1=245921&r2=245922&view=diff
==============================================================================
--- libcxx/trunk/test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/wchar_t_out.pass.cpp (original)
+++ libcxx/trunk/test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/wchar_t_out.pass.cpp Mon Aug 24 23:35:55 2015
@@ -15,6 +15,11 @@
 //            const internT* from, const internT* from_end, const internT*& from_next,
 //            externT* to, externT* to_end, externT*& to_next) const;
 
+// As of 24/Aug/2015 MSAN fails on this test because it doesn't provide an
+// interceptor for `wcrtomb` causing it to generate false positives.
+// TODO(EricWF) Remove this once D12311 lands.
+// XFAIL: msan
+
 #include <locale>
 #include <string>
 #include <vector>




More information about the cfe-commits mailing list