Skip to content

Commit 3f21294

Browse files
authored
Skip flaky test on Windows (#665)
1 parent 0682571 commit 3f21294

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

test/test_io_shared.jl

+6-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,12 @@ MPI.File.read_ordered!(fh, buf)
6060

6161
MPI.Barrier(comm)
6262
MPI.File.sync(fh)
63-
@test MPI.File.get_position_shared(fh) == sum(1:sz)
63+
if Sys.iswindows()
64+
# TODO: this has to be fixed: https://github.com/JuliaParallel/MPI.jl/issues/555
65+
@test_skip MPI.File.get_position_shared(fh) == sum(1:sz)
66+
else
67+
@test MPI.File.get_position_shared(fh) == sum(1:sz)
68+
end
6469

6570
MPI.File.set_view!(fh, 0, MPI.Datatype(UInt8), MPI.Datatype(UInt8))
6671
MPI.Barrier(comm)

0 commit comments

Comments
 (0)