Skip to content

Commit e9ec615

Browse files
committed
test: gcc hits constexpr operation limit
1 parent 58ab844 commit e9ec615

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libcxx/test/std/algorithms/alg.sorting/alg.sort/stable.sort/stable_sort.pass.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,12 +166,12 @@ TEST_CONSTEXPR_CXX26 void test()
166166

167167
test_larger_sorts<256>();
168168
test_larger_sorts<257>();
169-
test_larger_sorts<499>();
170-
test_larger_sorts<500>();
171169
#if TEST_STD_VER >= 26
172170
if !consteval // only runtime tests bc. error: "constexpr evaluation hit maximum step limit"
173171
#endif
174172
{
173+
test_larger_sorts<499>();
174+
test_larger_sorts<500>();
175175
test_larger_sorts<997>();
176176
test_larger_sorts<1000>();
177177
test_larger_sorts<1009>();

0 commit comments

Comments
 (0)