https://github.com/JuliaLang/julia
Raw File
Tip revision: a7b73fca6a308d84baa63c3b42dc6477f9cfbc18 authored by Fredrik Ekre on 15 May 2021, 09:48:09 UTC
[doc] fix keyword argument in docs for current_exceptions.
Tip revision: a7b73fc
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()

@test Base.libllvm_path() isa Symbol
@test contains(String(Base.libllvm_path()), "LLVM")
back to top