[PowerPC][NFC] Cleanup PPCCTRLoopsVerify pass
[llvm-project.git] / libcxx / test / std / strings / string.view / string.view.comparison / opeq.string_view.string_view.pass.cpp
blob3a5eeb732dea6b91ffb7a6c643bf2d9fc139e0f5
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 // <string_view>
11 // template<class charT, class traits, class Allocator>
12 // constexpr bool operator==(const basic_string_view<charT,traits> lhs,
13 // const basic_string_view<charT,traits> rhs);
15 #include <string_view>
16 #include <cassert>
18 #include "test_macros.h"
19 #include "constexpr_char_traits.h"
21 template <class S>
22 void
23 test(S lhs, S rhs, bool x)
25 assert((lhs == rhs) == x);
26 assert((rhs == lhs) == x);
29 int main(int, char**)
32 typedef std::string_view S;
33 test(S(""), S(""), true);
34 test(S(""), S("abcde"), false);
35 test(S(""), S("abcdefghij"), false);
36 test(S(""), S("abcdefghijklmnopqrst"), false);
37 test(S("abcde"), S(""), false);
38 test(S("abcde"), S("abcde"), true);
39 test(S("abcde"), S("abcdefghij"), false);
40 test(S("abcde"), S("abcdefghijklmnopqrst"), false);
41 test(S("abcdefghij"), S(""), false);
42 test(S("abcdefghij"), S("abcde"), false);
43 test(S("abcdefghij"), S("abcdefghij"), true);
44 test(S("abcdefghij"), S("abcdefghijklmnopqrst"), false);
45 test(S("abcdefghijklmnopqrst"), S(""), false);
46 test(S("abcdefghijklmnopqrst"), S("abcde"), false);
47 test(S("abcdefghijklmnopqrst"), S("abcdefghij"), false);
48 test(S("abcdefghijklmnopqrst"), S("abcdefghijklmnopqrst"), true);
51 #if TEST_STD_VER > 11
53 typedef std::basic_string_view<char, constexpr_char_traits<char>> SV;
54 constexpr SV sv1;
55 constexpr SV sv2;
56 constexpr SV sv3 { "abcde", 5 };
57 static_assert ( sv1 == sv2, "" );
58 static_assert (!(sv1 == sv3), "" );
60 #endif
62 return 0;