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

llvm-svn: 221240
This commit is contained in:
Eric Fiselier 2014-11-04 05:36:15 +00:00
parent 9bb421d38b
commit 652a3f3257
30 changed files with 30 additions and 30 deletions

View File

@ -12,7 +12,7 @@
// template <InputIterator Iter>
// iterator insert(const_iterator position, Iter first, Iter last);
// UNSUPPORTED: asan
// UNSUPPORTED: asan, msan
#if _LIBCPP_DEBUG >= 1
#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);
// UNSUPPORTED: asan
// UNSUPPORTED: asan, msan
#if _LIBCPP_DEBUG >= 1
#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);
// UNSUPPORTED: asan
// UNSUPPORTED: asan, msan
#if _LIBCPP_DEBUG >= 1
#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
// UNSUPPORTED: asan
// UNSUPPORTED: asan, msan
#include <new>
#include <cstddef>

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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