Skip to content

Commit 57c5686

Browse files
committed
TEST/UCT: fixed CI failures
1 parent d57ea73 commit 57c5686

File tree

2 files changed

+3
-22
lines changed

2 files changed

+3
-22
lines changed

test/gtest/ucp/test_ucp_peer_failure.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -987,7 +987,7 @@ UCS_TEST_P(test_ucp_peer_failure_rndv_put_ppln_abort, rtr_mtype)
987987
}
988988

989989
UCS_TEST_P(test_ucp_peer_failure_rndv_put_ppln_abort, pipeline,
990-
"RNDV_FRAG_SIZE=host:8K")
990+
"RNDV_FRAG_SIZE=host:8K,cuda:8K")
991991
{
992992
rndv_progress_failure_test(rndv_mode::put_ppln, true);
993993
}

test/gtest/uct/test_uct_iface.cc

Lines changed: 2 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,6 @@ class test_uct_iface : public uct_test {
2424
}
2525

2626
void test_is_reachable();
27-
28-
virtual bool is_self_reachable() const
29-
{
30-
return true;
31-
}
3227
};
3328

3429
void test_uct_iface::test_is_reachable()
@@ -63,7 +58,7 @@ void test_uct_iface::test_is_reachable()
6358
ASSERT_UCS_OK(status);
6459

6560
bool is_reachable = uct_iface_is_reachable_v2(iface, &params);
66-
EXPECT_EQ(is_self_reachable(), is_reachable);
61+
EXPECT_TRUE(is_reachable);
6762

6863
// Allocate corrupted address buffers, make it larger than the correct
6964
// buffer size in case the corrupted data indicates a larger address length
@@ -98,18 +93,4 @@ UCS_TEST_P(test_uct_iface, is_reachable)
9893
}
9994

10095
UCT_INSTANTIATE_TEST_CASE(test_uct_iface)
101-
102-
class test_uct_iface_self_unreachable : public test_uct_iface {
103-
protected:
104-
bool is_self_reachable() const override
105-
{
106-
return false;
107-
}
108-
};
109-
110-
UCS_TEST_P(test_uct_iface_self_unreachable, is_reachable)
111-
{
112-
test_is_reachable();
113-
}
114-
115-
UCT_INSTANTIATE_CUDA_IPC_TEST_CASE(test_uct_iface_self_unreachable)
96+
UCT_INSTANTIATE_CUDA_IPC_TEST_CASE(test_uct_iface)

0 commit comments

Comments
 (0)