Skip to content

Commit 13ae935

Browse files
authored
TEST/GTEST: Disable failing fault-tolerance test (#11397)
1 parent a630f5c commit 13ae935

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

test/gtest/ucp/test_ucp_fault_tolerance.cc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,15 @@ class test_ucp_fault_tolerance : public test_ucp_memheap {
195195
num_lanes_to_fail--;
196196
}
197197

198+
if (has_any_transport({"rc_v", "rc_x"}) &&
199+
(failure_side == FAILURE_SIDE_INITIATOR)) {
200+
/* TODO: fix RC AM initiator failure handling: invalidating a local
201+
* RC UCT EP triggers the error callback immediately (per lane),
202+
* causing m_err_count > 0 before all lanes are down */
203+
UCS_TEST_SKIP_R("RC AM initiator failure triggers error callback "
204+
"per invalidated lane");
205+
}
206+
198207
ucp_ep_h ucp_ep_for_injection = get_ucp_ep_for_err_injection(failure_side);
199208
for (size_t lane_idx = 0; lane_idx < num_lanes_to_fail; ++lane_idx) {
200209
ucp_lane_index_t lane = am_bw_lanes[lane_idx];

0 commit comments

Comments
 (0)