[go: up one dir, main page]

sysinfo 0.15.11

Library to get system information such as processes, processors, disks, components and networks
Documentation
//
// Sysinfo
//
// Copyright (c) 2020 Guillaume Gomez
//

// This test is used to ensure that the processors are loaded whatever the method
// used to initialize `System`.

#[test]
fn test_processor() {
    use sysinfo::SystemExt;

    let s = sysinfo::System::new();
    assert!(!s.get_processors().is_empty());
    let s = sysinfo::System::new_all();
    assert!(!s.get_processors().is_empty());
}

#[test]
fn test_physical_core_numbers() {
    use sysinfo::SystemExt;

    let s = sysinfo::System::new();
    let count = s.get_physical_core_count();
    assert_ne!(count, None);
    assert!(count.unwrap() > 0);
}