Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tests/test_mlx5_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ def check_rdma_transport_domain_caps(agr_obj):
query_adv_rdma_cap_out = QueryAdvRdmaCapOut(agr_obj.ctx.devx_general_cmd(
query_adv_rdma_cap_in, len(QueryAdvRdmaCapOut())))

if not query_adv_rdma_cap_out.capability.rdma_transport_rx_flow_table_properties.ft_support:
if not query_adv_rdma_cap_out.capability.rdma_transport_rx_flow_table_properties.ft_support or \
not query_adv_rdma_cap_out.capability.rdma_transport_tx_flow_table_properties.ft_support:
raise unittest.SkipTest("The device doesn't support the RDMA transport domain")


Expand Down