This is an automated email from the ASF dual-hosted git repository. brycemecum pushed a commit to branch maint-19.0.x in repository https://gitbox.apache.org/repos/asf/arrow.git
commit b79f9acdbe0cffc47584cc78e06d72be91498ac5 Author: David Li <[email protected]> AuthorDate: Mon Jan 27 05:04:23 2025 -0500 GH-45357: [C++] Disable Flight test (#45232) ### Rationale for this change See https://github.com/apache/arrow/issues/45120 ### What changes are included in this PR? Disable pointless test ### Are these changes tested? N/A ### Are there any user-facing changes? No * GitHub Issue: #45357 Lead-authored-by: David Li <[email protected]> Co-authored-by: Raúl Cumplido <[email protected]> Signed-off-by: Raúl Cumplido <[email protected]> --- cpp/src/arrow/flight/test_definitions.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cpp/src/arrow/flight/test_definitions.h b/cpp/src/arrow/flight/test_definitions.h index 1e0e8c209a..1391ffc40b 100644 --- a/cpp/src/arrow/flight/test_definitions.h +++ b/cpp/src/arrow/flight/test_definitions.h @@ -306,12 +306,13 @@ class ARROW_FLIGHT_EXPORT AsyncClientTest : public FlightTest { std::unique_ptr<FlightServerBase> server_; }; +// DISABLED TestListenerLifetime: https://github.com/apache/arrow/issues/45120 #define ARROW_FLIGHT_TEST_ASYNC_CLIENT(FIXTURE) \ static_assert(std::is_base_of<AsyncClientTest, FIXTURE>::value, \ ARROW_STRINGIFY(FIXTURE) " must inherit from AsyncClientTest"); \ TEST_F(FIXTURE, TestGetFlightInfo) { TestGetFlightInfo(); } \ TEST_F(FIXTURE, TestGetFlightInfoFuture) { TestGetFlightInfoFuture(); } \ - TEST_F(FIXTURE, TestListenerLifetime) { TestListenerLifetime(); } + TEST_F(FIXTURE, DISABLED_TestListenerLifetime) { TestListenerLifetime(); } } // namespace flight } // namespace arrow
