https://github.com/JuliaLang/julia
Revision f9f9cf317a294c138c5539960d7b6148d67acc95 authored by Keno Fischer on 15 September 2018, 19:13:09 UTC, committed by Keno Fischer on 18 September 2018, 23:17:40 UTC
1 parent 8c4d61e
Raw File
Tip revision: f9f9cf317a294c138c5539960d7b6148d67acc95 authored by Keno Fischer on 15 September 2018, 19:13:09 UTC
Add a method of run_passes that skips SSA conversion
Tip revision: f9f9cf3
sysinfo.jl
# This file is a part of Julia. License is MIT: https://julialang.org/license

# We can't guarantee that these are correct, but we can at least check
# that they run
@test length(Base.Sys.cpu_info()) > 0
sprint(Base.Sys.cpu_summary)
@test Base.Sys.uptime() > 0
Base.Sys.loadavg()
back to top