Factor out ranges tests from test_algorithm.cpp to test_algorithm_ranges.cpp (#1497)

This commit is contained in:
Roland Reichwein 2026-07-10 11:14:08 +02:00 committed by John Wellbelove
parent 338bfdbb1f
commit 423e18d96d
6 changed files with 12769 additions and 12709 deletions

View File

@ -14,6 +14,7 @@ add_executable(etl_tests
main.cpp main.cpp
murmurhash3.cpp murmurhash3.cpp
test_algorithm.cpp test_algorithm.cpp
test_algorithm_ranges.cpp
test_alignment.cpp test_alignment.cpp
test_array.cpp test_array.cpp
test_array_view.cpp test_array_view.cpp

View File

@ -2,6 +2,7 @@ etl_test_sources = files(
'main.cpp', 'main.cpp',
'murmurhash3.cpp', 'murmurhash3.cpp',
'test_algorithm.cpp', 'test_algorithm.cpp',
'test_algorithm_ranges.cpp',
'test_alignment.cpp', 'test_alignment.cpp',
'test_array.cpp', 'test_array.cpp',
'test_array_view.cpp', 'test_array_view.cpp',

File diff suppressed because it is too large Load Diff

12763
test/test_algorithm_ranges.cpp Normal file

File diff suppressed because it is too large Load Diff

View File

@ -10218,6 +10218,7 @@
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug MSVC C++20 - Force C++03 - No virtual messages|Win32'">true</ExcludedFromBuild> <ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug MSVC C++20 - Force C++03 - No virtual messages|Win32'">true</ExcludedFromBuild>
</ClCompile> </ClCompile>
<ClCompile Include="..\test_algorithm.cpp" /> <ClCompile Include="..\test_algorithm.cpp" />
<ClCompile Include="..\test_algorithm_ranges.cpp" />
<ClCompile Include="..\test_alignment.cpp" /> <ClCompile Include="..\test_alignment.cpp" />
<ClCompile Include="..\test_atomic.cpp" /> <ClCompile Include="..\test_atomic.cpp" />
<ClCompile Include="..\test_base64_RFC2152_decoder.cpp" /> <ClCompile Include="..\test_base64_RFC2152_decoder.cpp" />

View File

@ -2075,6 +2075,9 @@
<ClCompile Include="..\test_algorithm.cpp"> <ClCompile Include="..\test_algorithm.cpp">
<Filter>Tests\Algorithms</Filter> <Filter>Tests\Algorithms</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="..\test_algorithm_ranges.cpp">
<Filter>Tests\Algorithms</Filter>
</ClCompile>
<ClCompile Include="..\test_correlation.cpp"> <ClCompile Include="..\test_correlation.cpp">
<Filter>Tests\Algorithms</Filter> <Filter>Tests\Algorithms</Filter>
</ClCompile> </ClCompile>