Reset branch to trunk.
[official-gcc.git] / trunk / libstdc++-v3 / testsuite / 21_strings / basic_string / rfind / wchar_t / 1.cc
blobff1e7593d5ce42c898589c8d5b8702d5a2455f34
1 // 2000-06-22 -=dbv=- (shamelessy copied from bkoz' find.cc)
3 // Copyright (C) 2000, 2003, 2009 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 #include <string>
21 #include <testsuite_hooks.h>
23 // 21.3.6.2 basic_string rfind
24 bool test01(void)
26 bool test __attribute__((unused)) = true;
27 typedef std::wstring::size_type csize_type;
28 typedef std::wstring::const_reference cref;
29 typedef std::wstring::reference ref;
30 csize_type npos = std::wstring::npos;
31 csize_type csz01, csz02;
33 const wchar_t str_lit01[] = L"mave";
34 const std::wstring str01(L"mavericks, santa cruz");
35 std::wstring str02(str_lit01);
36 std::wstring str03(L"s, s");
37 std::wstring str04;
39 // size_type rfind(const wstring&, size_type pos = 0) const;
40 csz01 = str01.rfind(str01);
41 VERIFY( csz01 == 0 );
42 csz01 = str01.rfind(str01, 4);
43 VERIFY( csz01 == 0 );
44 csz01 = str01.rfind(str02,3);
45 VERIFY( csz01 == 0 );
46 csz01 = str01.rfind(str02);
47 VERIFY( csz01 == 0 );
48 csz01 = str01.rfind(str03);
49 VERIFY( csz01 == 8 );
50 csz01 = str01.rfind(str03, 3);
51 VERIFY( csz01 == npos );
52 csz01 = str01.rfind(str03, 12);
53 VERIFY( csz01 == 8 );
55 // An empty string consists of no characters
56 // therefore it should be found at every point in a string,
57 // except beyond the end
58 csz01 = str01.rfind(str04, 0);
59 VERIFY( csz01 == 0 );
60 csz01 = str01.rfind(str04, 5);
61 VERIFY( csz01 == 5 );
62 csz01 = str01.rfind(str04, str01.size());
63 VERIFY( csz01 == str01.size() );
64 csz01 = str01.rfind(str04, str01.size()+1);
65 VERIFY( csz01 == str01.size() );
67 // size_type rfind(const wchar_t* s, size_type pos, size_type n) const;
68 csz01 = str01.rfind(str_lit01, 0, 3);
69 VERIFY( csz01 == 0 );
70 csz01 = str01.rfind(str_lit01, 3, 0);
71 VERIFY( csz01 == 3 );
73 // size_type rfind(const wchar_t* s, size_type pos = 0) const;
74 csz01 = str01.rfind(str_lit01);
75 VERIFY( csz01 == 0 );
76 csz01 = str01.rfind(str_lit01, 3);
77 VERIFY( csz01 == 0 );
79 // size_type rfind(wchar_t c, size_type pos = 0) const;
80 csz01 = str01.rfind(L'z');
81 csz02 = str01.size() - 1;
82 VERIFY( csz01 == csz02 );
83 csz01 = str01.rfind(L'/');
84 VERIFY( csz01 == npos );
85 return test;
88 int main()
90 test01();
91 return 0;