Skip to content

Commit 04c8296

Browse files
committed
test: Skip another broken Windows test
1 parent 42eadfa commit 04c8296

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/test_io_shared.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ MPI.File.write_ordered(fh, fill(Int64(rank), rank+1))
4949
MPI.Barrier(comm)
5050
MPI.File.sync(fh)
5151
# TODO: this has to be fixed: https://github.com/JuliaParallel/MPI.jl/issues/879
52-
@test MPI.File.get_position_shared(fh) == sum(1:sz) skip=Sys.isapple()
52+
@test MPI.File.get_position_shared(fh) == sum(1:sz) skip = Sys.isapple() || Sys.iswindows()
5353

5454
MPI.File.seek_shared(fh, 0)
5555
@test MPI.File.get_position_shared(fh) == 0
@@ -65,7 +65,7 @@ MPI.Barrier(comm)
6565
MPI.File.sync(fh)
6666
MPI.Barrier(comm)
6767
# TODO: this has to be fixed: https://github.com/JuliaParallel/MPI.jl/issues/879
68-
@test MPI.File.get_position_shared(fh) == sum(1:sz) skip=Sys.iswindows()
68+
@test MPI.File.get_position_shared(fh) == sum(1:sz) skip = Sys.iswindows()
6969

7070
MPI.File.set_view!(fh, 0, MPI.Datatype(UInt8), MPI.Datatype(UInt8))
7171
MPI.Barrier(comm)

0 commit comments

Comments
 (0)