Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions tests/by-util/test_uptime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ use uutests::new_ucmd;
use uutests::util::TestScenario;
use uutests::util_name;

#[cfg(not(any(target_os = "macos", target_os = "openbsd")))]
#[cfg(not(any(target_os = "macos", target_os = "openbsd", target_env = "musl")))]
use bincode::{config, serde::encode_to_vec};
use regex::Regex;
#[cfg(not(any(target_os = "macos", target_os = "openbsd")))]
#[cfg(not(any(target_os = "macos", target_os = "openbsd", target_env = "musl")))]
use serde::Serialize;
#[cfg(not(any(target_os = "macos", target_os = "openbsd")))]
#[cfg(not(any(target_os = "macos", target_os = "openbsd", target_env = "musl")))]
use serde_big_array::BigArray;
#[cfg(not(any(target_os = "macos", target_os = "openbsd")))]
#[cfg(not(any(target_os = "macos", target_os = "openbsd", target_env = "musl")))]
use std::fs::File;
#[cfg(not(any(target_os = "macos", target_os = "openbsd")))]
#[cfg(not(any(target_os = "macos", target_os = "openbsd", target_env = "musl")))]
use std::{io::Write, path::PathBuf};

#[test]
Expand Down
Loading