This is an automated email from the ASF dual-hosted git repository.
raulcd 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 14e45a2495 GH-45357: [C++] Disable Flight test (#45232)
14e45a2495 is described below
commit 14e45a24957f76d3aea8a594d9c308ba0dee1dd7
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