/usr/share/julia/test/parallel.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
# Run the parallel test outside of the main driver, since it runs off its own
# set of workers.
cmd = `$(Base.julia_cmd()) --check-bounds=yes --depwarn=error parallel_exec.jl`
(strm, proc) = open(cmd)
errors = readall(strm)
wait(proc)
if !success(proc) && ccall(:jl_running_on_valgrind,Cint,()) == 0
println(errors);
error("Parallel test failed, cmd : $cmd")
end
|