Skip to content

Commit

Permalink
more CI hacking
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Noland committed Feb 6, 2022
1 parent c918c40 commit 35737e7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/integration/main.rs → ibverbs/tests/integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 35737e7

Please sign in to comment.