]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/21_strings/basic_string/allocator/wchar_t/noexcept.cc
Use effective-target instead of -std options
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 21_strings / basic_string / allocator / wchar_t / noexcept.cc
CommitLineData
818ab71a 1// Copyright (C) 2015-2016 Free Software Foundation, Inc.
5caff414
JW
2//
3// This file is part of the GNU ISO C++ Library. This library is free
4// software; you can redistribute it and/or modify it under the
5// terms of the GNU General Public License as published by the
6// Free Software Foundation; either version 3, or (at your option)
7// any later version.
8
9// This library is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13
14// You should have received a copy of the GNU General Public License along
15// with this library; see the file COPYING3. If not see
16// <http://www.gnu.org/licenses/>.
17
52066eae 18// { dg-do compile { target c++11 } }
5caff414
JW
19
20#include <string>
21#include <testsuite_allocator.h>
22
589a30d1
JW
23#if _GLIBCXX_USE_CXX11_ABI
24using C = wchar_t;
25const C c = L'a';
5caff414
JW
26using traits = std::char_traits<C>;
27
28using __gnu_test::propagating_allocator;
29
30void test01()
31{
32 typedef std::allocator<C> alloc_type;
33 typedef std::basic_string<C, traits, alloc_type> test_type;
34 test_type v1;
35 test_type v2;
36 // this is a GNU extension for std::allocator
37 static_assert( noexcept( v1 = std::move(v2) ), "Move assign cannot throw" );
38 static_assert( noexcept( v1.swap(v2) ), "Swap cannot throw" );
39}
40
41void test02()
42{
43 typedef propagating_allocator<C, false> alloc_type;
44 typedef std::basic_string<C, traits, alloc_type> test_type;
45 test_type v1(alloc_type(1));
46 test_type v2(alloc_type(2));
47 static_assert( !noexcept( v1 = std::move(v2) ), "Move assign can throw" );
48 static_assert( noexcept( v1.swap(v2) ), "Swap cannot throw" );
49}
50
51void test03()
52{
53 typedef propagating_allocator<C, true> alloc_type;
54 typedef std::basic_string<C, traits, alloc_type> test_type;
55 test_type v1(alloc_type(1));
56 test_type v2(alloc_type(2));
57 static_assert( noexcept( v1 = std::move(v2) ), "Move assign cannot throw" );
58 static_assert( noexcept( v1.swap(v2) ), "Swap cannot throw" );
59}
60#endif