summaryrefslogtreecommitdiffstats
path: root/vendor/rustix/tests/time/main.rs
blob: 43283bca28acf4de3aa076bf5f7468a76b6aabe9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Tests for [`rustix::time`].

#![cfg(feature = "time")]
#![cfg(not(windows))]
#![cfg_attr(target_os = "wasi", feature(wasi_ext))]
#![cfg_attr(io_lifetimes_use_std, feature(io_safety))]

mod dynamic_clocks;
#[cfg(not(any(target_os = "redox", target_os = "wasi")))]
mod monotonic;
#[cfg(any(target_os = "android", target_os = "linux"))]
mod timerfd;
mod timespec;
mod y2038;