This is an automated email from the ASF dual-hosted git repository. apitrou pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push: new ef1af63d09 GH-47584: [C++][CI] Remove "large memory" mark from TestListArray::TestOverflowCheck (#47585) ef1af63d09 is described below commit ef1af63d091239871eb98be842f5c3449bf93a42 Author: Antoine Pitrou <anto...@python.org> AuthorDate: Thu Sep 18 09:16:33 2025 +0200 GH-47584: [C++][CI] Remove "large memory" mark from TestListArray::TestOverflowCheck (#47585) ### Rationale for this change As found out in https://github.com/apache/arrow/issues/46600#issuecomment-2915420681 : the one test that is marked "large memory" in array_list_test.cc actually shows a very small memory consumption. ### What changes are included in this PR? Make test unconditional. ### Are these changes tested? Yes, by construction. ### Are there any user-facing changes? No. * GitHub Issue: #47584 Authored-by: Antoine Pitrou <anto...@python.org> Signed-off-by: Antoine Pitrou <anto...@python.org> --- cpp/src/arrow/array/array_list_test.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cpp/src/arrow/array/array_list_test.cc b/cpp/src/arrow/array/array_list_test.cc index 226f5fc464..8406bd1d8e 100644 --- a/cpp/src/arrow/array/array_list_test.cc +++ b/cpp/src/arrow/array/array_list_test.cc @@ -982,11 +982,7 @@ TYPED_TEST(TestListArray, ValidateDimensions) { this->TestValidateDimensions(); TYPED_TEST(TestListArray, CornerCases) { this->TestCornerCases(); } -#ifndef ARROW_LARGE_MEMORY_TESTS -TYPED_TEST(TestListArray, DISABLED_TestOverflowCheck) { this->TestOverflowCheck(); } -#else TYPED_TEST(TestListArray, TestOverflowCheck) { this->TestOverflowCheck(); } -#endif class TestListConversions : public ::testing::Test { private: