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 baa0fda commit bd5abbaCopy full SHA for bd5abba
test/test_wait.jl
@@ -32,15 +32,19 @@ for i=1:nsends
32
send_reqs[idx] = MPI.REQUEST_NULL
33
end
34
35
-@test sum(send_check) == nsends
+for i=1:nsends
36
+ @test send_check[i] == 1
37
+end
38
39
for i=1:nsends
40
idx, stat = MPI.Waitany!(recv_reqs)
41
recv_check[idx] += 1
42
recv_reqs[idx] = MPI.REQUEST_NULL
43
44
-@test sum(recv_check) == nsends
45
46
+ @test recv_check[i] == 1
47
48
49
MPI.Barrier(MPI.COMM_WORLD)
50
MPI.Finalize()
0 commit comments