]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/experimental/string_view/cons/char/1.cc
Update copyright years in libstdc++-v3/
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / experimental / string_view / cons / char / 1.cc
CommitLineData
77cba5af
ESR
1// { dg-options "-std=gnu++1y" }
2
aa118a03 3// Copyright (C) 2013-2014 Free Software Foundation, Inc.
77cba5af
ESR
4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
8// Free Software Foundation; either version 3, or (at your option)
9// any later version.
10
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
15
16// You should have received a copy of the GNU General Public License along
17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
19
20// basic_string_view constructors.
21
22#include <experimental/string_view>
23#include <string>
24#include <cstring>
25#include <testsuite_hooks.h>
26
27void
28test01()
29{
30 bool test [[gnu::unused]] = true;
31 typedef std::experimental::string_view::size_type csize_type;
32
33 // basic_string_view()
34 const std::experimental::string_view str00{};
35 VERIFY( str00.length() == 0 );
32f9be16 36 VERIFY( str00.data() != nullptr );
77cba5af
ESR
37
38 // basic_string_view(const char*)
39 const char str_lit01[] = "rodeo beach, marin";
40 const std::experimental::string_view str01{str_lit01};
41 VERIFY( str01.length() == 18 );
42 VERIFY( str01.data() == str_lit01 );
43 const std::experimental::string_view str02{"baker beach, san francisco"};
44 VERIFY( str02.length() == 26 );
45
46 // basic_string_view(const string_view&)
47 std::experimental::string_view str04{str01};
48 VERIFY( str04.length() == str01.length() );
49 VERIFY( str04.data() == str01.data() );
50
51 // basic_string_view(const char* s)
52 csize_type len_lit01 = strlen(str_lit01);
53 std::experimental::string_view str05{str_lit01, len_lit01};
54 VERIFY( str05.length() == len_lit01 );
55 VERIFY( str05.data() == str_lit01 );
32f9be16
ESR
56
57 // basic_string_view(const char* s, std::size_t l)
58 std::experimental::string_view str06{nullptr, len_lit01};
59 VERIFY( str06.length() == 0 );
60 VERIFY( str06.data() != nullptr );
77cba5af
ESR
61
62 // basic_string_view(basic_string& s)
63 std::string istr07(10, 'z');
64 std::experimental::string_view str07{istr07};
65 VERIFY( str07.length() == 10 );
66}
67
68int
69main()
70{
71 test01();
72
73 return 0;
74}