/usr/share/julia/test/remote.jl is in julia-common 0.4.7-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | # This file is a part of Julia. License is MIT: http://julialang.org/license
# Check that serializer hasn't gone out-of-frame
@test Serializer.sertag(Symbol) == 2
@test Serializer.sertag(()) == 47
@test Serializer.sertag(false) == 123
# issue #1770
let
a = ['T', 'e', 's', 't']
f = IOBuffer()
serialize(f, a)
seek(f, 0)
@test deserialize(f) == a
f = IOBuffer()
serialize(f, a)
seek(f, 0)
@test deserialize(f) == a
# issue #4414
seek(f,0)
serialize(f, :β)
seek(f,0)
@test deserialize(f) === :β
end
|