/usr/share/julia/test/testdefs.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 | # This file is a part of Julia. License is MIT: http://julialang.org/license
using Base.Test
function runtests(name)
@printf(" \033[1m*\033[0m \033[31m%-21s\033[0m", name)
tt = @elapsed include("$name.jl")
rss = Sys.maxrss()
@printf(" in %6.2f seconds, maxrss %7.2f MB\n", tt, rss / 2^20)
rss
end
# looking in . messes things up badly
filter!(x->x!=".", LOAD_PATH)
|