diff options
| author | Eric Fiselier <eric@efcs.ca> | 2014-11-04 05:36:15 +0000 |
|---|---|---|
| committer | Eric Fiselier <eric@efcs.ca> | 2014-11-04 05:36:15 +0000 |
| commit | 652a3f3257dcb824c9be061994c8f3e22394bb40 (patch) | |
| tree | 30bed317cbbefc957e405a58b86c1d22af962174 /libcxx/test/utilities/memory | |
| parent | 9bb421d38bc403e3cf4afc37511a22fc3cc5154d (diff) | |
| download | bcm5719-llvm-652a3f3257dcb824c9be061994c8f3e22394bb40.tar.gz bcm5719-llvm-652a3f3257dcb824c9be061994c8f3e22394bb40.zip | |
Actually mark the tests an unsupported with MSAN (not just ASAN)
llvm-svn: 221240
Diffstat (limited to 'libcxx/test/utilities/memory')
8 files changed, 8 insertions, 8 deletions
diff --git a/libcxx/test/utilities/memory/default.allocator/allocator.members/allocate.pass.cpp b/libcxx/test/utilities/memory/default.allocator/allocator.members/allocate.pass.cpp index 8e2efc3c6f9..a4a84e877dc 100644 --- a/libcxx/test/utilities/memory/default.allocator/allocator.members/allocate.pass.cpp +++ b/libcxx/test/utilities/memory/default.allocator/allocator.members/allocate.pass.cpp @@ -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> diff --git a/libcxx/test/utilities/memory/default.allocator/allocator.members/construct.pass.cpp b/libcxx/test/utilities/memory/default.allocator/allocator.members/construct.pass.cpp index 2da6fc3413b..b9a174973f2 100644 --- a/libcxx/test/utilities/memory/default.allocator/allocator.members/construct.pass.cpp +++ b/libcxx/test/utilities/memory/default.allocator/allocator.members/construct.pass.cpp @@ -12,7 +12,7 @@ // allocator: // template <class... Args> void construct(pointer p, Args&&... args); -// UNSUPPORTED: asan +// UNSUPPORTED: asan, msan #include <memory> #include <new> diff --git a/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/auto_ptr.pass.cpp b/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/auto_ptr.pass.cpp index fc3fd04fea5..28e49d6ecc4 100644 --- a/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/auto_ptr.pass.cpp +++ b/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/auto_ptr.pass.cpp @@ -11,7 +11,7 @@ // template<class Y> explicit shared_ptr(auto_ptr<Y>&& r); -// UNSUPPORTED: asan +// UNSUPPORTED: asan, msan #include <memory> #include <new> diff --git a/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/nullptr_t_deleter_throw.pass.cpp b/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/nullptr_t_deleter_throw.pass.cpp index 04fea401385..a8588cc6735 100644 --- a/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/nullptr_t_deleter_throw.pass.cpp +++ b/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/nullptr_t_deleter_throw.pass.cpp @@ -13,7 +13,7 @@ // template<class D> shared_ptr(nullptr_t, D d); -// UNSUPPORTED: asan +// UNSUPPORTED: asan, msan #include <memory> #include <cassert> diff --git a/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/pointer_deleter_throw.pass.cpp b/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/pointer_deleter_throw.pass.cpp index 9ce8feb9fc2..b024f7e15a5 100644 --- a/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/pointer_deleter_throw.pass.cpp +++ b/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/pointer_deleter_throw.pass.cpp @@ -13,7 +13,7 @@ // template<class Y, class D> shared_ptr(Y* p, D d); -// UNSUPPORTED: asan +// UNSUPPORTED: asan, msan #include <memory> #include <cassert> diff --git a/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/pointer_throw.pass.cpp b/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/pointer_throw.pass.cpp index 17569ae4044..28fb8bfd91c 100644 --- a/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/pointer_throw.pass.cpp +++ b/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/pointer_throw.pass.cpp @@ -11,7 +11,7 @@ // template<class Y> explicit shared_ptr(Y* p); -// UNSUPPORTED: asan +// UNSUPPORTED: asan, msan #include <memory> #include <new> diff --git a/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/unique_ptr.pass.cpp b/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/unique_ptr.pass.cpp index 58ea3092cf2..d3b28598e7e 100644 --- a/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/unique_ptr.pass.cpp +++ b/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/unique_ptr.pass.cpp @@ -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> diff --git a/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/make_shared.pass.cpp b/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/make_shared.pass.cpp index a3bf838196b..30a4984003b 100644 --- a/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/make_shared.pass.cpp +++ b/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/make_shared.pass.cpp @@ -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> |

