Skip to content

Commit b249a03

Browse files
casteryhmeta-codesync[bot]
authored andcommitted
remove outdated test (#1720)
Summary: Pull Request resolved: #1720 test no longer relevant, however not removed due to bad rebase. Reviewed By: dstaay-fb Differential Revision: D85896453 fbshipit-source-id: a5eb388e509cdfa1c4e5c56d035efa57c06928d6
1 parent e791625 commit b249a03

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

monarch_rdma/src/ibverbs_primitives.rs

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1107,24 +1107,4 @@ mod tests {
11071107
let mlx5dv_support = mlx5dv_supported();
11081108
println!("mlx5dv_supported: {}", mlx5dv_support);
11091109
}
1110-
1111-
#[test]
1112-
fn test_rdma_supported_combines_checks() {
1113-
// This test verifies that rdma_supported() properly combines both checks
1114-
let ibverbs_support = ibverbs_supported();
1115-
let mlx5dv_support = mlx5dv_supported();
1116-
let rdma_support = rdma_supported();
1117-
1118-
// rdma_supported should be true only if both checks pass
1119-
assert_eq!(
1120-
rdma_support,
1121-
ibverbs_support && mlx5dv_support,
1122-
"rdma_supported should equal (ibverbs_supported && mlx5dv_supported)"
1123-
);
1124-
1125-
println!(
1126-
"ibverbs_supported: {}, mlx5dv_supported: {}, rdma_supported: {}",
1127-
ibverbs_support, mlx5dv_support, rdma_support
1128-
);
1129-
}
11301110
}

0 commit comments

Comments
 (0)