]> git.proxmox.com Git - rustc.git/blob - vendor/getrandom/src/test_rdrand.rs
New upstream version 1.63.0+dfsg1
[rustc.git] / vendor / getrandom / src / test_rdrand.rs
1 // We only test the RDRAND-based RNG source on supported architectures.
2 #![cfg(any(target_arch = "x86_64", target_arch = "x86"))]
3
4 #[path = "rdrand.rs"]
5 mod rdrand;
6 use rdrand::getrandom_inner as getrandom;
7 #[path = "test_common.rs"]
8 mod test_common;