Sign in
android
/
toolchain
/
rustc
/
d2dbbcd40813d506244f1255bc2c84088a0197e1
/
.
/
vendor
/
getrandom-0.2.0
/
src
/
test_rdrand.rs
blob: fafa6acc2cb1c75f8e8d46f61febd24ce88da325 [
file
] [
log
] [
blame
]
// We only test the RDRAND-based RNG source on supported architectures.
#![
cfg
(
any
(
target_arch
=
"x86_64"
,
target_arch
=
"x86"
))]
#[
path
=
"rdrand.rs"
]
mod
rdrand
;
use
rdrand
::
getrandom_inner
as
getrandom
;
#[
path
=
"test_common.rs"
]
mod
test_common
;