18 lines
339 B
Rust
18 lines
339 B
Rust
//! x86/x86_64 tests
|
|
|
|
#![cfg(any(target_arch = "x86", target_arch = "x86_64"))]
|
|
|
|
cpufeatures::new!(cpuid, "aes", "sha");
|
|
|
|
#[test]
|
|
fn init() {
|
|
let token: cpuid::InitToken = cpuid::init();
|
|
assert_eq!(token.get(), cpuid::get());
|
|
}
|
|
|
|
#[test]
|
|
fn init_get() {
|
|
let (token, val) = cpuid::init_get();
|
|
assert_eq!(val, token.get());
|
|
}
|