Actually mark the tests an unsupported with MSAN (not just ASAN)

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@221240 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Fiselier 2014-11-04 05:36:15 +00:00
parent 72aab5f478
commit 829a84308e
30 changed files with 30 additions and 30 deletions

View File

@ -12,7 +12,7 @@
// template <InputIterator Iter> // template <InputIterator Iter>
// iterator insert(const_iterator position, Iter first, Iter last); // iterator insert(const_iterator position, Iter first, Iter last);
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
#if _LIBCPP_DEBUG >= 1 #if _LIBCPP_DEBUG >= 1
#define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::exit(0)) #define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::exit(0))

View File

@ -11,7 +11,7 @@
// iterator insert(const_iterator position, size_type n, const value_type& x); // iterator insert(const_iterator position, size_type n, const value_type& x);
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
#if _LIBCPP_DEBUG >= 1 #if _LIBCPP_DEBUG >= 1
#define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::exit(0)) #define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::exit(0))

View File

@ -11,7 +11,7 @@
// iterator insert(const_iterator position, const value_type& x); // iterator insert(const_iterator position, const value_type& x);
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
#if _LIBCPP_DEBUG >= 1 #if _LIBCPP_DEBUG >= 1
#define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::exit(0)) #define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::exit(0))

View File

@ -9,7 +9,7 @@
// test operator new [] nothrow by replacing only operator new // test operator new [] nothrow by replacing only operator new
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
#include <new> #include <new>
#include <cstddef> #include <cstddef>

View File

@ -9,7 +9,7 @@
// test operator new[] replacement by replacing only operator new // test operator new[] replacement by replacing only operator new
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
#include <new> #include <new>
#include <cstddef> #include <cstddef>

View File

@ -9,7 +9,7 @@
// test operator new nothrow by replacing only operator new // test operator new nothrow by replacing only operator new
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
#include <new> #include <new>
#include <cstddef> #include <cstddef>

View File

@ -9,7 +9,7 @@
// test operator new replacement // test operator new replacement
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
#include <new> #include <new>
#include <cstddef> #include <cstddef>

View File

@ -13,7 +13,7 @@
// ~ctype(); // ~ctype();
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
#include <locale> #include <locale>
#include <cassert> #include <cassert>

View File

@ -17,7 +17,7 @@
// // unspecified // // unspecified
// }; // };
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
// Not a portable test // Not a portable test

View File

@ -17,7 +17,7 @@
// // unspecified // // unspecified
// }; // };
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
// Not a portable test // Not a portable test

View File

@ -14,7 +14,7 @@
// wbuffer_convert(streambuf *bytebuf = 0, Codecvt *pcvt = new Codecvt, // wbuffer_convert(streambuf *bytebuf = 0, Codecvt *pcvt = new Codecvt,
// state_type state = state_type()); // state_type state = state_type());
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
#include <locale> #include <locale>
#include <codecvt> #include <codecvt>

View File

@ -11,7 +11,7 @@
// locale() throw(); // locale() throw();
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
#include <locale> #include <locale>
#include <new> #include <new>

View File

@ -11,7 +11,7 @@
// template <class Facet> locale combine(const locale& other) const; // template <class Facet> locale combine(const locale& other) const;
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
#include <locale> #include <locale>
#include <new> #include <new>

View File

@ -14,7 +14,7 @@
// template <MoveConstructible R, MoveConstructible ... ArgTypes> // template <MoveConstructible R, MoveConstructible ... ArgTypes>
// void swap(function<R(ArgTypes...)>&, function<R(ArgTypes...)>&); // void swap(function<R(ArgTypes...)>&, function<R(ArgTypes...)>&);
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
#include <functional> #include <functional>
#include <new> #include <new>

View File

@ -13,7 +13,7 @@
// function(nullptr_t); // function(nullptr_t);
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
#include <functional> #include <functional>
#include <new> #include <new>

View File

@ -16,7 +16,7 @@
// && Convertible<Callable<F, ArgTypes...>::result_type // && Convertible<Callable<F, ArgTypes...>::result_type
// operator=(F f); // operator=(F f);
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
#include <functional> #include <functional>
#include <new> #include <new>

View File

@ -13,7 +13,7 @@
// template<class A> function(allocator_arg_t, const A&, const function&); // template<class A> function(allocator_arg_t, const A&, const function&);
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
#include <functional> #include <functional>
#include <new> #include <new>

View File

@ -13,7 +13,7 @@
// template<class A> function(allocator_arg_t, const A&, function&&); // template<class A> function(allocator_arg_t, const A&, function&&);
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
#include <functional> #include <functional>
#include <cassert> #include <cassert>

View File

@ -13,7 +13,7 @@
// function(const function& f); // function(const function& f);
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
#include <functional> #include <functional>
#include <new> #include <new>

View File

@ -13,7 +13,7 @@
// function& operator=(const function& f); // function& operator=(const function& f);
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
#include <functional> #include <functional>
#include <new> #include <new>

View File

@ -13,7 +13,7 @@
// function& operator=(nullptr_t); // function& operator=(nullptr_t);
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
#include <functional> #include <functional>
#include <new> #include <new>

View File

@ -13,7 +13,7 @@
// void swap(function& other); // void swap(function& other);
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
#include <functional> #include <functional>
#include <new> #include <new>

View File

@ -12,7 +12,7 @@
// allocator: // allocator:
// pointer allocate(size_type n, allocator<void>::const_pointer hint=0); // pointer allocate(size_type n, allocator<void>::const_pointer hint=0);
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
#include <memory> #include <memory>
#include <new> #include <new>

View File

@ -12,7 +12,7 @@
// allocator: // allocator:
// template <class... Args> void construct(pointer p, Args&&... args); // template <class... Args> void construct(pointer p, Args&&... args);
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
#include <memory> #include <memory>
#include <new> #include <new>

View File

@ -11,7 +11,7 @@
// template<class Y> explicit shared_ptr(auto_ptr<Y>&& r); // template<class Y> explicit shared_ptr(auto_ptr<Y>&& r);
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
#include <memory> #include <memory>
#include <new> #include <new>

View File

@ -13,7 +13,7 @@
// template<class D> shared_ptr(nullptr_t, D d); // template<class D> shared_ptr(nullptr_t, D d);
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
#include <memory> #include <memory>
#include <cassert> #include <cassert>

View File

@ -13,7 +13,7 @@
// template<class Y, class D> shared_ptr(Y* p, D d); // template<class Y, class D> shared_ptr(Y* p, D d);
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
#include <memory> #include <memory>
#include <cassert> #include <cassert>

View File

@ -11,7 +11,7 @@
// template<class Y> explicit shared_ptr(Y* p); // template<class Y> explicit shared_ptr(Y* p);
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
#include <memory> #include <memory>
#include <new> #include <new>

View File

@ -11,7 +11,7 @@
// template <class Y, class D> explicit shared_ptr(unique_ptr<Y, D>&&r); // template <class Y, class D> explicit shared_ptr(unique_ptr<Y, D>&&r);
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
#include <memory> #include <memory>
#include <new> #include <new>

View File

@ -13,7 +13,7 @@
// template<class T, class... Args> shared_ptr<T> make_shared(Args&&... args); // template<class T, class... Args> shared_ptr<T> make_shared(Args&&... args);
// UNSUPPORTED: asan // UNSUPPORTED: asan, msan
#include <memory> #include <memory>
#include <new> #include <new>