Revision eb3c78a6129accb0f3fdacd784204d5309678fb9 authored by oscarddssmith on 10 November 2021, 18:41:55 UTC, committed by oscarddssmith on 10 November 2021, 18:41:55 UTC
1 parent c8f5d11
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