Revision 9ee414d10c37d37991dc505a930599f8b4e22f58 authored by Arun sanganal on 09 June 2021, 11:16:32 UTC, committed by GitHub on 09 June 2021, 11:16:32 UTC
1 parent 9bb992c
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