Skip to content

Commit

Permalink
Mark Windows virtual dataset tests as broken
Browse files Browse the repository at this point in the history
  • Loading branch information
mkitti committed Mar 24, 2024
1 parent 5717f4c commit aae1cab
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions test/virtual_dataset.jl
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,13 @@ using Test, HDF5
virtual=[HDF5.VirtualMapping(vspace, "./sub-%b.hdf5", "x", srcspace)]
)

@test size(d) == (3, 2)
@test read(d) == hcat(fill(1.0, 3), fill(2.0, 3))
if Sys.iswindows()
@test_broken size(d) == (3, 2)
@test_broken read(d) == hcat(fill(1.0, 3), fill(2.0, 3))
else
@test size(d) == (3, 2)
@test read(d) == hcat(fill(1.0, 3), fill(2.0, 3))
end

dcpl = HDF5.get_create_properties(d)

Expand Down

0 comments on commit aae1cab

Please sign in to comment.