1 //===----------------------------------------------------------------------===//
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
7 //===----------------------------------------------------------------------===//
11 // void push_back(charT c) // constexpr since C++20
17 #include "test_macros.h"
18 #include "min_allocator.h"
27 struct char_traits
<VeryLarge
> {
28 using char_type
= VeryLarge
;
30 using off_type
= streamoff
;
31 using pos_type
= streampos
;
32 using state_type
= mbstate_t;
34 static TEST_CONSTEXPR_CXX20
void assign(char_type
& c1
, const char_type
& c2
) { c1
= c2
; }
35 static bool eq(char_type c1
, char_type c2
);
36 static bool lt(char_type c1
, char_type c2
);
38 static int compare(const char_type
* s1
, const char_type
* s2
, std::size_t n
);
39 static std::size_t length(const char_type
* s
);
40 static const char_type
* find(const char_type
* s
, std::size_t n
, const char_type
& a
);
41 static char_type
* move(char_type
* s1
, const char_type
* s2
, std::size_t n
);
42 static TEST_CONSTEXPR_CXX20 char_type
* copy(char_type
* s1
, const char_type
* s2
, std::size_t n
) {
43 std::copy_n(s2
, n
, s1
);
46 static TEST_CONSTEXPR_CXX20 char_type
* assign(char_type
* s
, std::size_t n
, char_type a
) {
51 static int_type
not_eof(int_type c
);
52 static char_type
to_char_type(int_type c
);
53 static int_type
to_int_type(char_type c
);
54 static bool eq_int_type(int_type c1
, int_type c2
);
55 static int_type
eof();
57 } // end namespace std
60 TEST_CONSTEXPR_CXX20
void test(S s
, typename
S::value_type c
, S expected
) {
62 LIBCPP_ASSERT(s
.__invariants());
63 assert(s
== expected
);
67 TEST_CONSTEXPR_CXX20
void test_string() {
68 test(S(), 'a', S(1, 'a'));
69 test(S("12345"), 'a', S("12345a"));
70 test(S("12345678901234567890"), 'a', S("12345678901234567890a"));
73 TEST_CONSTEXPR_CXX20
bool test() {
74 test_string
<std::string
>();
75 #if TEST_STD_VER >= 11
76 test_string
<std::basic_string
<char, std::char_traits
<char>, min_allocator
<char> > >();
79 // https://llvm.org/PR31454
80 std::basic_string
<VeryLarge
> s
;
90 int main(int, char**) {
93 static_assert(test());