Skip to content

Commit

Permalink
test improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
jpjones76 committed May 4, 2019
1 parent 6490ea1 commit 4ec7f0b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/DataFormats/test_mseed.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ S = readmseed(string(path, "/SampleFiles/test.mseed"), v=0)

# Test breaks if memory-resident SeisIOBuf structure SEED is not reset
S1 = readmseed(string(path, "/SampleFiles/test.mseed"), v=0)
S2 = readmseed(string(path, "/SampleFiles/t*.mseed"), v=0)
@test S == S1 == S2
if Sys.iswindows() == false
S2 = readmseed(string(path, "/SampleFiles/t*.mseed"), v=0)
@test S == S1 == S2
end


mseed_vals = readdlm("DataFormats/test_mseed_vals.txt", ',', comments=true, comment_char='#')
Expand Down

2 comments on commit 4ec7f0b

@jpjones76
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/531

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.0 -m "<description of version>" 4ec7f0be9eda92f35b5a101d639e3df55e7f354a
git push origin v0.2.0

Please sign in to comment.