Revision b01a0cb8239ea484876a0e330e3c2dfa53da5880 authored by Valentin Churavy on 13 April 2021, 13:40:16 UTC, committed by GitHub on 13 April 2021, 13:40:16 UTC
2 parent s 4a19b75 + 2646c43
Raw File
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