Skip to content

Commit

Permalink
send_multi returns a vector of requests
Browse files Browse the repository at this point in the history
  • Loading branch information
biddisco committed Nov 29, 2021
1 parent 8e94afd commit 4b06bd5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/test_send_multi.cpp
Expand Up @@ -47,7 +47,8 @@ TEST_F(mpi_test_fixture, send_multi)
init_msg(msg);
std::vector<int> dsts(comm.size() - 1);
for (int i = 1; i < comm.size(); ++i) dsts[i - 1] = i;
comm.send_multi(msg, dsts, 42).wait();
comm.send_multi(msg, dsts, 42);
comm.wait_all();
}
else
{
Expand Down

0 comments on commit 4b06bd5

Please sign in to comment.