From 35737e776efd0a98f055565968dc669d3d3e3f5b Mon Sep 17 00:00:00 2001 From: Daniel Noland Date: Sun, 6 Feb 2022 15:53:57 -0700 Subject: [PATCH] more CI hacking --- tests/integration/main.rs => ibverbs/tests/integration.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename tests/integration/main.rs => ibverbs/tests/integration.rs (100%) diff --git a/tests/integration/main.rs b/ibverbs/tests/integration.rs similarity index 100% rename from tests/integration/main.rs rename to ibverbs/tests/integration.rs index d43bd5d..932bbdd 100644 --- a/tests/integration/main.rs +++ b/ibverbs/tests/integration.rs @@ -76,12 +76,12 @@ fn can_send_rdma_loopback_traffic_on_test_device() { const SEND_REQUEST_ID: u64 = 2; unsafe { - queue_pair - .post_send(&mut memory_region, 1.., SEND_REQUEST_ID) - .expect("failed to post send request on queue pair"); queue_pair .post_receive(&mut memory_region, ..1, RECEIVE_REQUEST_ID) .expect("failed to post receive request on queue pair"); + queue_pair + .post_send(&mut memory_region, 1.., SEND_REQUEST_ID) + .expect("failed to post send request on queue pair"); } let mut sent = false;