]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/21_strings/basic_string/operations/rfind/wchar_t/1.cc
runtime: copy Go 1.7 runtime semaphore code
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 21_strings / basic_string / operations / rfind / wchar_t / 1.cc
CommitLineData
913c27bf
BV
1// 2000-06-22 -=dbv=- (shamelessy copied from bkoz' find.cc)
2
818ab71a 3// Copyright (C) 2000-2016 Free Software Foundation, Inc.
913c27bf
BV
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
748086b7 8// Free Software Foundation; either version 3, or (at your option)
913c27bf
BV
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
748086b7
JJ
17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
913c27bf
BV
19
20#include <string>
fe413112 21#include <testsuite_hooks.h>
913c27bf
BV
22
23// 21.3.6.2 basic_string rfind
24bool test01(void)
25{
11f10e6b 26 bool test __attribute__((unused)) = true;
61f1ed59
PC
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;
913c27bf
BV
31 csize_type csz01, csz02;
32
61f1ed59
PC
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;
913c27bf 38
61f1ed59 39 // size_type rfind(const wstring&, size_type pos = 0) const;
913c27bf 40 csz01 = str01.rfind(str01);
aa1b2f7d 41 VERIFY( csz01 == 0 );
913c27bf 42 csz01 = str01.rfind(str01, 4);
aa1b2f7d 43 VERIFY( csz01 == 0 );
913c27bf 44 csz01 = str01.rfind(str02,3);
aa1b2f7d 45 VERIFY( csz01 == 0 );
913c27bf 46 csz01 = str01.rfind(str02);
aa1b2f7d 47 VERIFY( csz01 == 0 );
913c27bf 48 csz01 = str01.rfind(str03);
aa1b2f7d 49 VERIFY( csz01 == 8 );
913c27bf 50 csz01 = str01.rfind(str03, 3);
aa1b2f7d 51 VERIFY( csz01 == npos );
913c27bf 52 csz01 = str01.rfind(str03, 12);
aa1b2f7d 53 VERIFY( csz01 == 8 );
913c27bf
BV
54
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);
aa1b2f7d 59 VERIFY( csz01 == 0 );
913c27bf 60 csz01 = str01.rfind(str04, 5);
aa1b2f7d 61 VERIFY( csz01 == 5 );
913c27bf 62 csz01 = str01.rfind(str04, str01.size());
aa1b2f7d 63 VERIFY( csz01 == str01.size() );
913c27bf 64 csz01 = str01.rfind(str04, str01.size()+1);
aa1b2f7d 65 VERIFY( csz01 == str01.size() );
913c27bf 66
61f1ed59 67 // size_type rfind(const wchar_t* s, size_type pos, size_type n) const;
913c27bf 68 csz01 = str01.rfind(str_lit01, 0, 3);
aa1b2f7d 69 VERIFY( csz01 == 0 );
913c27bf 70 csz01 = str01.rfind(str_lit01, 3, 0);
aa1b2f7d 71 VERIFY( csz01 == 3 );
913c27bf 72
61f1ed59 73 // size_type rfind(const wchar_t* s, size_type pos = 0) const;
913c27bf 74 csz01 = str01.rfind(str_lit01);
aa1b2f7d 75 VERIFY( csz01 == 0 );
913c27bf 76 csz01 = str01.rfind(str_lit01, 3);
aa1b2f7d 77 VERIFY( csz01 == 0 );
913c27bf 78
61f1ed59
PC
79 // size_type rfind(wchar_t c, size_type pos = 0) const;
80 csz01 = str01.rfind(L'z');
913c27bf 81 csz02 = str01.size() - 1;
aa1b2f7d 82 VERIFY( csz01 == csz02 );
61f1ed59 83 csz01 = str01.rfind(L'/');
aa1b2f7d 84 VERIFY( csz01 == npos );
913c27bf
BV
85 return test;
86}
87
913c27bf
BV
88int main()
89{
90 test01();
04d930e6 91 return 0;
913c27bf 92}