Reverting merge from trunk
[official-gcc.git] / libstdc++-v3 / testsuite / 21_strings / basic_string / modifiers / replace / char / 4.cc
blob056c194e0be8fcd7ff2ba2e71324441f11db818b
1 // 1999-06-10 bkoz
3 // Copyright (C) 1994-2013 Free Software Foundation, Inc.
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.
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.
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/>.
20 // 21.3.5.6 basic_string::replace
22 #include <string>
23 #include <testsuite_hooks.h>
25 // Some more tests for
26 // template<typename InputIter>
27 // string& replace(iterator it1, iterator it2, InputIter j1, InputIter j2)
28 void
29 test04()
31 bool test __attribute__((unused)) = true;
32 std::string str01 = "geogaddi";
33 std::string str02;
35 typedef std::string::iterator iterator;
36 typedef std::string::const_iterator const_iterator;
38 iterator it1 = str01.begin();
39 iterator it2 = str01.end();
40 str02.replace(str02.begin(), str02.end(), it1, it2);
41 VERIFY(str02 == "geogaddi");
43 str02 = "boards";
44 const_iterator c_it1 = str01.begin();
45 const_iterator c_it2 = str01.end();
46 str02.replace(str02.begin(), str02.end(), c_it1, c_it2);
47 VERIFY(str02 == "geogaddi");
49 str02 = "boards";
50 const char* c_ptr1 = str01.c_str();
51 const char* c_ptr2 = str01.c_str() + 8;
52 str02.replace(str02.begin(), str02.end(), c_ptr1, c_ptr2);
53 VERIFY(str02 == "geogaddi");
55 str02 = "boards";
56 char* ptr1 = &*str01.begin();
57 char* ptr2 = ptr1 + str01.length();
58 str02.replace(str02.begin(), str02.end(), ptr1, ptr2);
59 VERIFY(str02 == "geogaddi");
62 int main()
64 test04();
65 return 0;