From ea9200416adbfd7ebf3d565f6329e090e4057b5a Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sat, 7 Feb 2026 02:13:57 +0200 Subject: [PATCH] Disable find_end.cpp, find_first_of.cpp under CMake, as they require /bigobj --- test/Jamfile.v2 | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index 68ee5cc..33ebf10 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -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 ;