Sha256: fcf476ca6ebd0845ab547cea4fe40c2ba2a2324c024264d9a86f666586f3a480
Contents?: true
Size: 339 Bytes
Versions: 36
Compression:
Stored size: 339 Bytes
Contents
//! 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()); }
Version data entries
36 entries across 36 versions & 1 rubygems