Revision 2f0156a6c79566bf265397641effa17a202f7ab4 authored by DilumAluthgeBot on 09 April 2021, 22:26:20 UTC, committed by GitHub on 09 April 2021, 22:26:20 UTC
Co-authored-by: Dilum Aluthge <dilum@aluthge.com>
1 parent 54c7002
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