diff options
Diffstat (limited to 'libcxx/test/std/strings/basic.string/string.cons/move_alloc.pass.cpp')
-rw-r--r-- | libcxx/test/std/strings/basic.string/string.cons/move_alloc.pass.cpp | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/libcxx/test/std/strings/basic.string/string.cons/move_alloc.pass.cpp b/libcxx/test/std/strings/basic.string/string.cons/move_alloc.pass.cpp index 1f9631449ee..a232a46bd9f 100644 --- a/libcxx/test/std/strings/basic.string/string.cons/move_alloc.pass.cpp +++ b/libcxx/test/std/strings/basic.string/string.cons/move_alloc.pass.cpp @@ -16,6 +16,7 @@ #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES +#include "test_macros.h" #include "test_allocator.h" #include "min_allocator.h" @@ -34,6 +35,11 @@ test(S s0, const typename S::allocator_type& a) } #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES +// #if _LIBCPP_STD_VER <= 14 +// _NOEXCEPT_(is_nothrow_move_constructible<allocator_type>::value); +// #else +// _NOEXCEPT; +// #endif int main() { @@ -41,6 +47,11 @@ int main() { typedef test_allocator<char> A; typedef std::basic_string<char, std::char_traits<char>, A> S; +#if TEST_STD_VER > 14 + static_assert((noexcept(S{})), "" ); +#elif TEST_STD_VER >= 11 + static_assert((noexcept(S()) == std::is_nothrow_move_constructible<A>::value), "" ); +#endif test(S(), A(3)); test(S("1"), A(5)); test(S("1234567890123456789012345678901234567890123456789012345678901234567890"), A(7)); @@ -50,15 +61,25 @@ int main() { typedef test_allocator<char> A; typedef std::basic_string<char, std::char_traits<char>, A> S; +#if TEST_STD_VER > 14 + static_assert((noexcept(S{})), "" ); +#elif TEST_STD_VER >= 11 + static_assert((noexcept(S()) == std::is_nothrow_move_constructible<A>::value), "" ); +#endif S s1 ( "Twas brillig, and the slivy toves did gyre and gymbal in the wabe" ); S s2 (std::move(s1), A(1)); } assert ( test_alloc_base::alloc_count == alloc_count ); -#if __cplusplus >= 201103L +#if TEST_STD_VER >= 11 { typedef min_allocator<char> A; typedef std::basic_string<char, std::char_traits<char>, A> S; +#if TEST_STD_VER > 14 + static_assert((noexcept(S{})), "" ); +#elif TEST_STD_VER >= 11 + static_assert((noexcept(S()) == std::is_nothrow_move_constructible<A>::value), "" ); +#endif test(S(), A()); test(S("1"), A()); test(S("1234567890123456789012345678901234567890123456789012345678901234567890"), A()); |