
Enabling -Wmissing-declarations points out that a bunch of function in the unittests can be made static, do that. gdb/ChangeLog: * unittests/array-view-selftests.c (check_ptr_size_ctor2): Make static. * unittests/basic_string_view/capacity/1.cc (test01): Likewise. * unittests/basic_string_view/cons/char/1.cc (test01): Likewise. (main): Likewise. * unittests/basic_string_view/cons/char/2.cc (test03): Likewise. (main): Likewise. * unittests/basic_string_view/cons/char/3.cc (test05): Likewise. (main): Likewise. * unittests/basic_string_view/element_access/char/1.cc (test01): Likewise. (main): Likewise. * unittests/basic_string_view/element_access/char/empty.cc (main): Likewise. * unittests/basic_string_view/element_access/char/front_back.cc (test01): Likewise. (main): Likewise. * unittests/basic_string_view/inserters/char/2.cc (test05): Likewise. (main): Likewise. * unittests/basic_string_view/modifiers/remove_prefix/char/1.cc (test01): Likewise. (main): Likewise. * unittests/basic_string_view/modifiers/remove_suffix/char/1.cc (test01): Likewise. (main): Likewise. * unittests/basic_string_view/modifiers/swap/char/1.cc (test01): Likewise. * unittests/basic_string_view/operations/compare/char/1.cc (test01): Likewise. (main): Likewise. * unittests/basic_string_view/operations/compare/char/13650.cc (test01): Likewise. * unittests/basic_string_view/operations/copy/char/1.cc (test01): Likewise. (main): Likewise. * unittests/basic_string_view/operations/data/char/1.cc (test01): Likewise. (main): Likewise. * unittests/basic_string_view/operations/find/char/1.cc (test01): Likewise. (main): Likewise. * unittests/basic_string_view/operations/find/char/2.cc (test02): Likewise. (main): Likewise. * unittests/basic_string_view/operations/find/char/3.cc (test03): Likewise. (main): Likewise. * unittests/basic_string_view/operations/find/char/4.cc (main): Likewise. * unittests/basic_string_view/operations/rfind/char/1.cc (test01): Likewise. (main): Likewise. * unittests/basic_string_view/operations/rfind/char/2.cc (test02): Likewise. (main): Likewise. * unittests/basic_string_view/operations/rfind/char/3.cc (test03): Likewise. (main): Likewise. * unittests/basic_string_view/operations/substr/char/1.cc (test01): Likewise. (main): Likewise. * unittests/basic_string_view/operators/char/2.cc (main): Likewise. * unittests/optional/assignment/1.cc (test): Likewise. * unittests/optional/assignment/2.cc (test): Likewise. * unittests/optional/assignment/3.cc (test): Likewise. * unittests/optional/assignment/4.cc (test): Likewise. * unittests/optional/assignment/5.cc (test): Likewise. * unittests/optional/assignment/6.cc (test): Likewise. * unittests/optional/assignment/7.cc (test): Likewise. * unittests/optional/cons/copy.cc (test): Likewise. * unittests/optional/cons/default.cc (test): Likewise. * unittests/optional/cons/move.cc (test): Likewise. * unittests/optional/cons/value.cc (test): Likewise. * unittests/optional/in_place.cc (test): Likewise. * unittests/optional/observers/1.cc (test): Likewise. * unittests/optional/observers/2.cc (test): Likewise. Change-Id: I66626db864cb877cacc570d4660df633530554f5
373 lines
11 KiB
C++
373 lines
11 KiB
C++
// { dg-options "-std=gnu++17" }
|
|
|
|
// Copyright (C) 2013-2019 Free Software Foundation, Inc.
|
|
//
|
|
// This file is part of the GNU ISO C++ Library. This library is free
|
|
// software; you can redistribute it and/or modify it under the
|
|
// terms of the GNU General Public License as published by the
|
|
// Free Software Foundation; either version 3, or (at your option)
|
|
// any later version.
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License along
|
|
// with this library; see the file COPYING3. If not see
|
|
// <http://www.gnu.org/licenses/>.
|
|
|
|
// basic_string non-member functions
|
|
|
|
// operator==
|
|
/*
|
|
template<class charT, class traits, class Allocator>
|
|
bool operator==(const basic_string<charT,traits,Allocator>& lhs,
|
|
const basic_string<charT,traits,Allocator>& rhs);
|
|
|
|
template<class charT, class traits, class Allocator>
|
|
bool operator==(const charT* lhs,
|
|
const basic_string<charT,traits,Allocator>& rhs);
|
|
|
|
template<class charT, class traits, class Allocator>
|
|
bool operator==(const basic_string<charT,traits,Allocator>& lhs,
|
|
const charT* rhs);
|
|
*/
|
|
|
|
// operator!=
|
|
/*
|
|
template<class charT, class traits, class Allocator>
|
|
bool operator!=(const basic_string<charT,traits,Allocator>& lhs,
|
|
const basic_string<charT,traits,Allocator>& rhs);
|
|
|
|
template<class charT, class traits, class Allocator>
|
|
bool operator!=(const charT* lhs,
|
|
const basic_string<charT,traits,Allocator>& rhs);
|
|
|
|
template<class charT, class traits, class Allocator>
|
|
bool operator!=(const basic_string<charT,traits,Allocator>& lhs,
|
|
const charT* rhs);
|
|
*/
|
|
|
|
// operator<
|
|
/*
|
|
template<class charT, class traits, class Allocator>
|
|
bool operator< (const basic_string<charT,traits,Allocator>& lhs,
|
|
const basic_string<charT,traits,Allocator>& rhs);
|
|
|
|
template<class charT, class traits, class Allocator>
|
|
bool operator< (const basic_string<charT,traits,Allocator>& lhs,
|
|
const charT* rhs);
|
|
|
|
template<class charT, class traits, class Allocator>
|
|
bool operator< (const charT* lhs,
|
|
const basic_string<charT,traits,Allocator>& rhs);
|
|
*/
|
|
|
|
// operator>
|
|
/*
|
|
template<class charT, class traits, class Allocator>
|
|
bool operator> (const basic_string<charT,traits,Allocator>& lhs,
|
|
const basic_string<charT,traits,Allocator>& rhs);
|
|
|
|
template<class charT, class traits, class Allocator>
|
|
bool operator> (const basic_string<charT,traits,Allocator>& lhs,
|
|
const charT* rhs);
|
|
|
|
template<class charT, class traits, class Allocator>
|
|
bool operator> (const charT* lhs,
|
|
const basic_string<charT,traits,Allocator>& rhs);
|
|
*/
|
|
|
|
// operator<=
|
|
/*
|
|
template<class charT, class traits, class Allocator>
|
|
bool operator<=(const basic_string<charT,traits,Allocator>& lhs,
|
|
const basic_string<charT,traits,Allocator>& rhs);
|
|
|
|
template<class charT, class traits, class Allocator>
|
|
bool operator<=(const basic_string<charT,traits,Allocator>& lhs,
|
|
const charT* rhs);
|
|
|
|
template<class charT, class traits, class Allocator>
|
|
bool operator<=(const charT* lhs,
|
|
const basic_string<charT,traits,Allocator>& rhs);
|
|
*/
|
|
|
|
// operator>=
|
|
/*
|
|
template<class charT, class traits, class Allocator>
|
|
bool operator>=(const basic_string<charT,traits,Allocator>& lhs,
|
|
const basic_string<charT,traits,Allocator>& rhs);
|
|
|
|
template<class charT, class traits, class Allocator>
|
|
bool operator>=(const basic_string<charT,traits,Allocator>& lhs,
|
|
const charT* rhs);
|
|
|
|
template<class charT, class traits, class Allocator>
|
|
bool operator>=(const charT* lhs,
|
|
const basic_string<charT,traits,Allocator>& rhs);
|
|
*/
|
|
|
|
namespace operators_2 {
|
|
|
|
static void
|
|
test01()
|
|
{
|
|
gdb::string_view str_0("costa rica");
|
|
gdb::string_view str_1("costa marbella");
|
|
gdb::string_view str_2("cost");
|
|
gdb::string_view str_3("costa ricans");
|
|
gdb::string_view str_4;
|
|
|
|
str_4 = str_0;
|
|
//comparisons between string objects
|
|
VERIFY( !(str_0 == str_1) );
|
|
VERIFY( !(str_0 == str_2) );
|
|
VERIFY( !(str_0 == str_3) );
|
|
VERIFY( !(str_1 == str_0) );
|
|
VERIFY( !(str_2 == str_0) );
|
|
VERIFY( !(str_3 == str_0) );
|
|
VERIFY( str_4 == str_0 );
|
|
VERIFY( str_0 == str_4 );
|
|
|
|
VERIFY( str_0 != str_1 );
|
|
VERIFY( str_0 != str_2 );
|
|
VERIFY( str_0 != str_3 );
|
|
VERIFY( str_1 != str_0 );
|
|
VERIFY( str_2 != str_0 );
|
|
VERIFY( str_3 != str_0 );
|
|
VERIFY( !(str_0 != str_4) );
|
|
VERIFY( !(str_4 != str_0) );
|
|
|
|
VERIFY( str_0 > str_1 ); //true cuz r>m
|
|
VERIFY( str_0 > str_2 );
|
|
VERIFY( !(str_0 > str_3) );
|
|
VERIFY( !(str_1 > str_0) ); //false cuz m<r
|
|
VERIFY( !(str_2 > str_0) );
|
|
VERIFY( str_3 > str_0 );
|
|
VERIFY( !(str_0 > str_4) );
|
|
VERIFY( !(str_4 > str_0) );
|
|
|
|
VERIFY( !(str_0 < str_1) ); //false cuz r>m
|
|
VERIFY( !(str_0 < str_2) );
|
|
VERIFY( str_0 < str_3 );
|
|
VERIFY( str_1 < str_0 ); //true cuz m<r
|
|
VERIFY( str_2 < str_0 );
|
|
VERIFY( !(str_3 < str_0) );
|
|
VERIFY( !(str_0 < str_4) );
|
|
VERIFY( !(str_4 < str_0) );
|
|
|
|
VERIFY( str_0 >= str_1 ); //true cuz r>m
|
|
VERIFY( str_0 >= str_2 );
|
|
VERIFY( !(str_0 >= str_3) );
|
|
VERIFY( !(str_1 >= str_0) );//false cuz m<r
|
|
VERIFY( !(str_2 >= str_0) );
|
|
VERIFY( str_3 >= str_0 );
|
|
VERIFY( str_0 >= str_4 );
|
|
VERIFY( str_4 >= str_0 );
|
|
|
|
VERIFY( !(str_0 <= str_1) );//false cuz r>m
|
|
VERIFY( !(str_0 <= str_2) );
|
|
VERIFY( str_0 <= str_3 );
|
|
VERIFY( str_1 <= str_0 );//true cuz m<r
|
|
VERIFY( str_2 <= str_0 );
|
|
VERIFY( !(str_3 <= str_0) );
|
|
VERIFY( str_0 <= str_4 );
|
|
VERIFY( str_4 <= str_0 );
|
|
|
|
//comparisons between string object and string literal
|
|
VERIFY( !(str_0 == "costa marbella") );
|
|
VERIFY( !(str_0 == "cost") );
|
|
VERIFY( !(str_0 == "costa ricans") );
|
|
VERIFY( !("costa marbella" == str_0) );
|
|
VERIFY( !("cost" == str_0) );
|
|
VERIFY( !("costa ricans" == str_0) );
|
|
VERIFY( "costa rica" == str_0 );
|
|
VERIFY( str_0 == "costa rica" );
|
|
|
|
VERIFY( str_0 != "costa marbella" );
|
|
VERIFY( str_0 != "cost" );
|
|
VERIFY( str_0 != "costa ricans" );
|
|
VERIFY( "costa marbella" != str_0 );
|
|
VERIFY( "cost" != str_0 );
|
|
VERIFY( "costa ricans" != str_0 );
|
|
VERIFY( !("costa rica" != str_0) );
|
|
VERIFY( !(str_0 != "costa rica") );
|
|
|
|
VERIFY( str_0 > "costa marbella" ); //true cuz r>m
|
|
VERIFY( str_0 > "cost" );
|
|
VERIFY( !(str_0 > "costa ricans") );
|
|
VERIFY( !("costa marbella" > str_0) );//false cuz m<r
|
|
VERIFY( !("cost" > str_0) );
|
|
VERIFY( "costa ricans" > str_0 );
|
|
VERIFY( !("costa rica" > str_0) );
|
|
VERIFY( !(str_0 > "costa rica") );
|
|
|
|
VERIFY( !(str_0 < "costa marbella") );//false cuz r>m
|
|
VERIFY( !(str_0 < "cost") );
|
|
VERIFY( str_0 < "costa ricans" );
|
|
VERIFY( "costa marbella" < str_0 );//true cuz m<r
|
|
VERIFY( "cost" < str_0 );
|
|
VERIFY( !("costa ricans" < str_0) );
|
|
VERIFY( !("costa rica" < str_0) );
|
|
VERIFY( !(str_0 < "costa rica") );
|
|
|
|
VERIFY( str_0 >= "costa marbella" );//true cuz r>m
|
|
VERIFY( str_0 >= "cost" );
|
|
VERIFY( !(str_0 >= "costa ricans") );
|
|
VERIFY( !("costa marbella" >= str_0) );//false cuz m<r
|
|
VERIFY( !("cost" >= str_0) );
|
|
VERIFY( "costa ricans" >= str_0 );
|
|
VERIFY( "costa rica" >= str_0 );
|
|
VERIFY( str_0 >= "costa rica" );
|
|
|
|
VERIFY( !(str_0 <= "costa marbella") );//false cuz r>m
|
|
VERIFY( !(str_0 <= "cost") );
|
|
VERIFY( str_0 <= "costa ricans" );
|
|
VERIFY( "costa marbella" <= str_0 );//true cuz m<r
|
|
VERIFY( "cost" <= str_0 );
|
|
VERIFY( !("costa ricans" <= str_0) );
|
|
VERIFY( "costa rica" <= str_0 );
|
|
VERIFY( str_0 <= "costa rica" );
|
|
}
|
|
|
|
#ifndef GDB_STRING_VIEW
|
|
constexpr bool
|
|
test02()
|
|
{
|
|
std::string_view str_0("costa rica");
|
|
std::string_view str_1("costa marbella");
|
|
std::string_view str_2("cost");
|
|
std::string_view str_3("costa ricans");
|
|
std::string_view str_4;
|
|
|
|
#undef VERIFY
|
|
#define VERIFY(x) if (!(x)) return false
|
|
|
|
str_4 = str_0;
|
|
//comparisons between string objects
|
|
VERIFY( !(str_0 == str_1) );
|
|
VERIFY( !(str_0 == str_2) );
|
|
VERIFY( !(str_0 == str_3) );
|
|
VERIFY( !(str_1 == str_0) );
|
|
VERIFY( !(str_2 == str_0) );
|
|
VERIFY( !(str_3 == str_0) );
|
|
VERIFY( str_4 == str_0 );
|
|
VERIFY( str_0 == str_4 );
|
|
|
|
VERIFY( str_0 != str_1 );
|
|
VERIFY( str_0 != str_2 );
|
|
VERIFY( str_0 != str_3 );
|
|
VERIFY( str_1 != str_0 );
|
|
VERIFY( str_2 != str_0 );
|
|
VERIFY( str_3 != str_0 );
|
|
VERIFY( !(str_0 != str_4) );
|
|
VERIFY( !(str_4 != str_0) );
|
|
|
|
VERIFY( str_0 > str_1 ); //true cuz r>m
|
|
VERIFY( str_0 > str_2 );
|
|
VERIFY( !(str_0 > str_3) );
|
|
VERIFY( !(str_1 > str_0) ); //false cuz m<r
|
|
VERIFY( !(str_2 > str_0) );
|
|
VERIFY( str_3 > str_0 );
|
|
VERIFY( !(str_0 > str_4) );
|
|
VERIFY( !(str_4 > str_0) );
|
|
|
|
VERIFY( !(str_0 < str_1) ); //false cuz r>m
|
|
VERIFY( !(str_0 < str_2) );
|
|
VERIFY( str_0 < str_3 );
|
|
VERIFY( str_1 < str_0 ); //true cuz m<r
|
|
VERIFY( str_2 < str_0 );
|
|
VERIFY( !(str_3 < str_0) );
|
|
VERIFY( !(str_0 < str_4) );
|
|
VERIFY( !(str_4 < str_0) );
|
|
|
|
VERIFY( str_0 >= str_1 ); //true cuz r>m
|
|
VERIFY( str_0 >= str_2 );
|
|
VERIFY( !(str_0 >= str_3) );
|
|
VERIFY( !(str_1 >= str_0) );//false cuz m<r
|
|
VERIFY( !(str_2 >= str_0) );
|
|
VERIFY( str_3 >= str_0 );
|
|
VERIFY( str_0 >= str_4 );
|
|
VERIFY( str_4 >= str_0 );
|
|
|
|
VERIFY( !(str_0 <= str_1) );//false cuz r>m
|
|
VERIFY( !(str_0 <= str_2) );
|
|
VERIFY( str_0 <= str_3 );
|
|
VERIFY( str_1 <= str_0 );//true cuz m<r
|
|
VERIFY( str_2 <= str_0 );
|
|
VERIFY( !(str_3 <= str_0) );
|
|
VERIFY( str_0 <= str_4 );
|
|
VERIFY( str_4 <= str_0 );
|
|
|
|
//comparisons between string object and string literal
|
|
VERIFY( !(str_0 == "costa marbella") );
|
|
VERIFY( !(str_0 == "cost") );
|
|
VERIFY( !(str_0 == "costa ricans") );
|
|
VERIFY( !("costa marbella" == str_0) );
|
|
VERIFY( !("cost" == str_0) );
|
|
VERIFY( !("costa ricans" == str_0) );
|
|
VERIFY( "costa rica" == str_0 );
|
|
VERIFY( str_0 == "costa rica" );
|
|
|
|
VERIFY( str_0 != "costa marbella" );
|
|
VERIFY( str_0 != "cost" );
|
|
VERIFY( str_0 != "costa ricans" );
|
|
VERIFY( "costa marbella" != str_0 );
|
|
VERIFY( "cost" != str_0 );
|
|
VERIFY( "costa ricans" != str_0 );
|
|
VERIFY( !("costa rica" != str_0) );
|
|
VERIFY( !(str_0 != "costa rica") );
|
|
|
|
VERIFY( str_0 > "costa marbella" ); //true cuz r>m
|
|
VERIFY( str_0 > "cost" );
|
|
VERIFY( !(str_0 > "costa ricans") );
|
|
VERIFY( !("costa marbella" > str_0) );//false cuz m<r
|
|
VERIFY( !("cost" > str_0) );
|
|
VERIFY( "costa ricans" > str_0 );
|
|
VERIFY( !("costa rica" > str_0) );
|
|
VERIFY( !(str_0 > "costa rica") );
|
|
|
|
VERIFY( !(str_0 < "costa marbella") );//false cuz r>m
|
|
VERIFY( !(str_0 < "cost") );
|
|
VERIFY( str_0 < "costa ricans" );
|
|
VERIFY( "costa marbella" < str_0 );//true cuz m<r
|
|
VERIFY( "cost" < str_0 );
|
|
VERIFY( !("costa ricans" < str_0) );
|
|
VERIFY( !("costa rica" < str_0) );
|
|
VERIFY( !(str_0 < "costa rica") );
|
|
|
|
VERIFY( str_0 >= "costa marbella" );//true cuz r>m
|
|
VERIFY( str_0 >= "cost" );
|
|
VERIFY( !(str_0 >= "costa ricans") );
|
|
VERIFY( !("costa marbella" >= str_0) );//false cuz m<r
|
|
VERIFY( !("cost" >= str_0) );
|
|
VERIFY( "costa ricans" >= str_0 );
|
|
VERIFY( "costa rica" >= str_0 );
|
|
VERIFY( str_0 >= "costa rica" );
|
|
|
|
VERIFY( !(str_0 <= "costa marbella") );//false cuz r>m
|
|
VERIFY( !(str_0 <= "cost") );
|
|
VERIFY( str_0 <= "costa ricans" );
|
|
VERIFY( "costa marbella" <= str_0 );//true cuz m<r
|
|
VERIFY( "cost" <= str_0 );
|
|
VERIFY( !("costa ricans" <= str_0) );
|
|
VERIFY( "costa rica" <= str_0 );
|
|
VERIFY( str_0 <= "costa rica" );
|
|
|
|
return true;
|
|
}
|
|
#endif
|
|
|
|
static int
|
|
main ()
|
|
{
|
|
test01();
|
|
#ifndef GDB_STRING_VIEW
|
|
static_assert( test02() );
|
|
#endif
|
|
return 0;
|
|
}
|
|
|
|
} // namespace operators_2
|