Skip to content

Commit 35459fe

Browse files
committed
GTEST/UCT: Relaxed test_cuda_nvml.device_get_fabric_info condition.
1 parent 9d0394a commit 35459fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/gtest/uct/cuda/test_cuda_nvml.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ UCS_TEST_F(test_cuda_nvml, device_get_fabric_info) {
4141
fabric_info.version = nvmlGpuFabricInfo_v2;
4242
status = UCT_CUDA_NVML_WRAP_CALL(nvmlDeviceGetGpuFabricInfoV, device,
4343
&fabric_info);
44-
EXPECT_EQ(status, UCS_OK);
44+
EXPECT_TRUE((status == UCS_OK) || (status == UCS_ERR_IO_ERROR));
4545
}
4646
#endif

0 commit comments

Comments
 (0)