1//! Tests for [`rustix::time`].
2
3#![cfg(feature = "time")]
4#![cfg(not(windows))]
5#![cfg_attr(target_os = "wasi", feature(wasi_ext))]
6#![cfg_attr(io_lifetimes_use_std, feature(io_safety))]
7
8mod dynamic_clocks;
9#[cfg(not(any(target_os = "redox", target_os = "wasi")))]
10mod monotonic;
11#[cfg(any(target_os = "android", target_os = "linux"))]
12mod timerfd;
13mod timespec;
14mod y2038;
15