]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/21_strings/basic_string/modifiers/replace/char/7.cc
libstdc++: Ensure c++NN effective target present in all C++17 tests
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 21_strings / basic_string / modifiers / replace / char / 7.cc
1 // { dg-options "-std=gnu++17" }
2 // { dg-do run { target c++17 } }
3
4 // Copyright (C) 2016-2020 Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library. This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 3, or (at your option)
10 // any later version.
11
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
16
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING3. If not see
19 // <http://www.gnu.org/licenses/>.
20
21 // [string.modifiers]
22
23 #include <string>
24 #include <testsuite_hooks.h>
25
26 void
27 test03()
28 {
29 std::string_view str1("foo");
30 std::string str2("bar");
31 str2.replace(0, 3, str1);
32 VERIFY (str2 == str1);
33 str2 = "foobar";
34 str2.replace(3, 3, str1);
35 VERIFY (str2 == "foofoo");
36 str2 = "foobar";
37 str2.replace(3, 3, str1, 0, 3);
38 VERIFY (str2 == "foofoo");
39 str2 = "foobar";
40 str2.replace(3, 1024, str1, 0, 3);
41 VERIFY (str2 == "foofoo");
42 str2 = "foobar";
43 str2.replace(3, 3, str1, 0, 1024);
44 VERIFY (str2 == "foofoo");
45 str2 = "foobar";
46 str2.replace(str2.begin()+3, str2.begin()+6, str1);
47 VERIFY (str2 == "foofoo");
48 }
49
50 // PR libstdc++/77264
51 void
52 test04()
53 {
54 std::string str("a");
55 char c = 'b';
56 str.replace(0, 1, &c, 1);
57 VERIFY (str[0] == c);
58
59 char arr[] = "c";
60 str.replace(0, 1, arr, 1);
61 VERIFY (str[0] == arr[0]);
62
63 const char carr[] = "d";
64 str.replace(0, 1, carr, 1);
65 VERIFY (str[0] == carr[0]);
66
67 struct S {
68 operator char*() { return &c; }
69 operator std::string_view() { return "!"; }
70 char c = 'e';
71 };
72
73 str.replace(0, 1, S{}, 1);
74 VERIFY (str[0] == S{}.c);
75 }
76
77 int main()
78 {
79 test03();
80 test04();
81 return 0;
82 }