File tree Expand file tree Collapse file tree 4 files changed +12
-4
lines changed
libcxx/test/std/algorithms/alg.modifying.operations/alg.copy Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -101,9 +101,11 @@ TEST_CONSTEXPR_CXX20 bool test() {
101
101
102
102
{ // Test vector<bool>::iterator optimization
103
103
assert (test_vector_bool (8 ));
104
- assert (test_vector_bool (16 ));
104
+ assert (test_vector_bool (19 ));
105
105
assert (test_vector_bool (32 ));
106
+ assert (test_vector_bool (49 ));
106
107
assert (test_vector_bool (64 ));
108
+ assert (test_vector_bool (199 ));
107
109
assert (test_vector_bool (256 ));
108
110
}
109
111
Original file line number Diff line number Diff line change @@ -127,9 +127,11 @@ TEST_CONSTEXPR_CXX20 bool test() {
127
127
128
128
{ // Test vector<bool>::iterator optimization
129
129
assert (test_vector_bool (8 ));
130
- assert (test_vector_bool (16 ));
130
+ assert (test_vector_bool (19 ));
131
131
assert (test_vector_bool (32 ));
132
+ assert (test_vector_bool (49 ));
132
133
assert (test_vector_bool (64 ));
134
+ assert (test_vector_bool (199 ));
133
135
assert (test_vector_bool (256 ));
134
136
}
135
137
Original file line number Diff line number Diff line change @@ -230,9 +230,11 @@ constexpr bool test() {
230
230
#if TEST_STD_VER >= 23
231
231
{ // Test vector<bool>::iterator optimization
232
232
assert (test_vector_bool (8 ));
233
- assert (test_vector_bool (16 ));
233
+ assert (test_vector_bool (19 ));
234
234
assert (test_vector_bool (32 ));
235
+ assert (test_vector_bool (49 ));
235
236
assert (test_vector_bool (64 ));
237
+ assert (test_vector_bool (199 ));
236
238
assert (test_vector_bool (256 ));
237
239
}
238
240
#endif
Original file line number Diff line number Diff line change @@ -138,9 +138,11 @@ constexpr bool test() {
138
138
#if TEST_STD_VER >= 23
139
139
{ // Test vector<bool>::iterator optimization
140
140
assert (test_vector_bool (8 ));
141
- assert (test_vector_bool (16 ));
141
+ assert (test_vector_bool (19 ));
142
142
assert (test_vector_bool (32 ));
143
+ assert (test_vector_bool (49 ));
143
144
assert (test_vector_bool (64 ));
145
+ assert (test_vector_bool (199 ));
144
146
assert (test_vector_bool (256 ));
145
147
}
146
148
#endif
You can’t perform that action at this time.
0 commit comments