Disable find_end.cpp, find_first_of.cpp under CMake, as they require /bigobj

This commit is contained in:
Peter Dimov
2026-02-07 02:13:57 +02:00
parent 23e09c1b06
commit ea9200416a

View File

@@ -112,8 +112,11 @@ run algorithm_test/equal_range.cpp ;
run algorithm_test/fill.cpp ;
run algorithm_test/find.cpp ;
run algorithm_test/find_if.cpp ;
run algorithm_test/find_end.cpp ;
run algorithm_test/find_first_of.cpp ;
# these two tests require /bigobj in windows-cmake-test
run algorithm_test/find_end.cpp : ;
run algorithm_test/find_first_of.cpp : ;
run algorithm_test/for_each.cpp ;
run algorithm_test/generate.cpp ;
run algorithm_test/heap.cpp ;