Revision 17515cdf16d380c269d748a88e82693f87db4d4a authored by Jameson Nash on 26 October 2022, 21:39:35 UTC, committed by Jameson Nash on 26 October 2022, 21:39:39 UTC
1 parent d4af142
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