Skip to content

Commit 14e45a2

Browse files
lidavidmraulcd
andauthored
apacheGH-45357: [C++] Disable Flight test (apache#45232)
### Rationale for this change See apache#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: apache#45357 Lead-authored-by: David Li <[email protected]> Co-authored-by: Raúl Cumplido <[email protected]> Signed-off-by: Raúl Cumplido <[email protected]>
1 parent f373c11 commit 14e45a2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cpp/src/arrow/flight/test_definitions.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -306,12 +306,13 @@ class ARROW_FLIGHT_EXPORT AsyncClientTest : public FlightTest {
306306
std::unique_ptr<FlightServerBase> server_;
307307
};
308308

309+
// DISABLED TestListenerLifetime: https://github.com/apache/arrow/issues/45120
309310
#define ARROW_FLIGHT_TEST_ASYNC_CLIENT(FIXTURE) \
310311
static_assert(std::is_base_of<AsyncClientTest, FIXTURE>::value, \
311312
ARROW_STRINGIFY(FIXTURE) " must inherit from AsyncClientTest"); \
312313
TEST_F(FIXTURE, TestGetFlightInfo) { TestGetFlightInfo(); } \
313314
TEST_F(FIXTURE, TestGetFlightInfoFuture) { TestGetFlightInfoFuture(); } \
314-
TEST_F(FIXTURE, TestListenerLifetime) { TestListenerLifetime(); }
315+
TEST_F(FIXTURE, DISABLED_TestListenerLifetime) { TestListenerLifetime(); }
315316

316317
} // namespace flight
317318
} // namespace arrow

0 commit comments

Comments
 (0)