Revision 268420df5211670fd7df3e6e4d1b4fc3f15c793f authored by Jeff Bezanson on 19 March 2017, 21:56:34 UTC, committed by GitHub on 19 March 2017, 21:56:34 UTC
fix #21054, parse/lowering problem with `<:T` syntax
2 parent s e6ef51f + 89de7df
Raw File
sysinfo.jl
# This file is a part of Julia. License is MIT: http://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