https://github.com/JuliaLang/julia
Raw File
Tip revision: f7487bdaf7176a3ac4a4d037c3b4c3354fc2db54 authored by Valentin Churavy on 08 October 2021, 23:05:41 UTC
Preload zlib in the loader
Tip revision: f7487bd
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