From 4ec7f0be9eda92f35b5a101d639e3df55e7f354a Mon Sep 17 00:00:00 2001 From: Joshua Date: Sat, 4 May 2019 05:19:58 -0700 Subject: [PATCH] test improvements --- test/DataFormats/test_mseed.jl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/DataFormats/test_mseed.jl b/test/DataFormats/test_mseed.jl index f0f83a21..26ba0ec3 100644 --- a/test/DataFormats/test_mseed.jl +++ b/test/DataFormats/test_mseed.jl @@ -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='#')