mirror of
https://github.com/MillironX/XAM.jl.git
synced 2024-11-23 02:09:55 +00:00
Check that EOF_BLOCK gets written
This commit is contained in:
parent
10c1aacd4d
commit
560a5cd8df
1 changed files with 10 additions and 2 deletions
|
@ -209,6 +209,14 @@
|
||||||
close(reader)
|
close(reader)
|
||||||
close(writer)
|
close(writer)
|
||||||
|
|
||||||
|
|
||||||
|
# Check that EOF_BLOCK gets written.
|
||||||
|
nbytes = filesize(path)
|
||||||
|
@test BAM.BGZFStreams.EOF_BLOCK == open(path) do io
|
||||||
|
seek(io, nbytes - length(BAM.BGZFStreams.EOF_BLOCK))
|
||||||
|
read(io)
|
||||||
|
end
|
||||||
|
|
||||||
reader = open(BAM.Reader, path)
|
reader = open(BAM.Reader, path)
|
||||||
|
|
||||||
@test header(reader) == header_original
|
@test header(reader) == header_original
|
||||||
|
|
Loading…
Reference in a new issue