summaryrefslogtreecommitdiffstats
path: root/vendor/nix/test/test_time.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 02:49:50 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 02:49:50 +0000
commit9835e2ae736235810b4ea1c162ca5e65c547e770 (patch)
tree3fcebf40ed70e581d776a8a4c65923e8ec20e026 /vendor/nix/test/test_time.rs
parentReleasing progress-linux version 1.70.0+dfsg2-1~progress7.99u1. (diff)
downloadrustc-9835e2ae736235810b4ea1c162ca5e65c547e770.tar.xz
rustc-9835e2ae736235810b4ea1c162ca5e65c547e770.zip
Merging upstream version 1.71.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/nix/test/test_time.rs')
-rw-r--r--vendor/nix/test/test_time.rs59
1 files changed, 0 insertions, 59 deletions
diff --git a/vendor/nix/test/test_time.rs b/vendor/nix/test/test_time.rs
deleted file mode 100644
index 5f76e61a2..000000000
--- a/vendor/nix/test/test_time.rs
+++ /dev/null
@@ -1,59 +0,0 @@
-#[cfg(any(
- target_os = "freebsd",
- target_os = "dragonfly",
- target_os = "linux",
- target_os = "android",
- target_os = "emscripten",
-))]
-use nix::time::clock_getcpuclockid;
-use nix::time::{clock_gettime, ClockId};
-
-#[cfg(not(target_os = "redox"))]
-#[test]
-pub fn test_clock_getres() {
- nix::time::clock_getres(ClockId::CLOCK_REALTIME).expect("assertion failed");
-}
-
-#[test]
-pub fn test_clock_gettime() {
- clock_gettime(ClockId::CLOCK_REALTIME).expect("assertion failed");
-}
-
-#[cfg(any(
- target_os = "freebsd",
- target_os = "dragonfly",
- target_os = "linux",
- target_os = "android",
- target_os = "emscripten",
-))]
-#[test]
-pub fn test_clock_getcpuclockid() {
- let clock_id = clock_getcpuclockid(nix::unistd::Pid::this()).unwrap();
- clock_gettime(clock_id).unwrap();
-}
-
-#[cfg(not(target_os = "redox"))]
-#[test]
-pub fn test_clock_id_res() {
- ClockId::CLOCK_REALTIME.res().unwrap();
-}
-
-#[test]
-pub fn test_clock_id_now() {
- ClockId::CLOCK_REALTIME.now().unwrap();
-}
-
-#[cfg(any(
- target_os = "freebsd",
- target_os = "dragonfly",
- target_os = "linux",
- target_os = "android",
- target_os = "emscripten",
-))]
-#[test]
-pub fn test_clock_id_pid_cpu_clock_id() {
- ClockId::pid_cpu_clock_id(nix::unistd::Pid::this())
- .map(ClockId::now)
- .unwrap()
- .unwrap();
-}