We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c94e55e commit 9b0b793Copy full SHA for 9b0b793
test/test_wait.jl
@@ -20,14 +20,14 @@ recv_check = zeros(Int, nsends)
20
21
for i = 1:nsends
22
idx = MPI.Waitany(send_reqs)
23
- @test send_reqs[idx] == MPI.REQUEST_NULL
+ @test MPI.isnull(send_reqs[idx])
24
send_check[idx] += 1
25
end
26
@test send_check == ones(Int, nsends)
27
28
29
idx = MPI.Waitany(recv_reqs)
30
- @test recv_reqs[idx] == MPI.REQUEST_NULL
+ @test MPI.isnull(recv_reqs[idx])
31
recv_check[idx] += 1
32
33
@test recv_check == ones(Int, nsends)
0 commit comments