summaryrefslogtreecommitdiffstats
path: root/vendor/cpufeatures/tests/x86.rs
blob: 0d81242389fa9bb9ad03a7c203cb01de024f1068 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! 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());
}