diff options
| author | Eric Fiselier <eric@efcs.ca> | 2014-11-04 05:11:41 +0000 |
|---|---|---|
| committer | Eric Fiselier <eric@efcs.ca> | 2014-11-04 05:11:41 +0000 |
| commit | 446e4b6be1ea99c88924ae6ee588eafa63264018 (patch) | |
| tree | dad3c8cda79c36a1f4e8519c42f214bb2769e60f /libcxx/test/utilities/memory/default.allocator | |
| parent | 1baf2359df5c69d13befb2921372a3b6a03ea7cc (diff) | |
| download | bcm5719-llvm-446e4b6be1ea99c88924ae6ee588eafa63264018.tar.gz bcm5719-llvm-446e4b6be1ea99c88924ae6ee588eafa63264018.zip | |
Mark tests that replace operator new/delete as UNSUPPORTED with ASAN and MSAN.
tests that replace operator new/delete won't link when using ASAN and MSAN
because these sanitizers also replace new/delete.
llvm-svn: 221236
Diffstat (limited to 'libcxx/test/utilities/memory/default.allocator')
| -rw-r--r-- | libcxx/test/utilities/memory/default.allocator/allocator.members/allocate.pass.cpp | 2 | ||||
| -rw-r--r-- | libcxx/test/utilities/memory/default.allocator/allocator.members/construct.pass.cpp | 2 |
2 files changed, 4 insertions, 0 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 f881805e30d..8e2efc3c6f9 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,6 +12,8 @@ // allocator: // pointer allocate(size_type n, allocator<void>::const_pointer hint=0); +// UNSUPPORTED: asan + #include <memory> #include <new> #include <cstdlib> 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 7e1500b7311..2da6fc3413b 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,6 +12,8 @@ // allocator: // template <class... Args> void construct(pointer p, Args&&... args); +// UNSUPPORTED: asan + #include <memory> #include <new> #include <cstdlib> |

