1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 11:07:44 +00:00

Merge pull request #7244 from sylvestre/sleep

Decrease more sleep
This commit is contained in:
Daniel Hofstetter 2025-01-31 14:52:24 +01:00 committed by GitHub
commit 3891ee1159
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -611,7 +611,7 @@ fn test_cp_arg_interactive_update_overwrite_older() {
// Option N // Option N
let (at, mut ucmd) = at_and_ucmd!(); let (at, mut ucmd) = at_and_ucmd!();
at.touch("b"); at.touch("b");
std::thread::sleep(Duration::from_secs(1)); sleep(Duration::from_millis(100));
at.touch("a"); at.touch("a");
ucmd.args(&["-i", "-u", "a", "b"]) ucmd.args(&["-i", "-u", "a", "b"])
.pipe_in("N\n") .pipe_in("N\n")
@ -623,7 +623,7 @@ fn test_cp_arg_interactive_update_overwrite_older() {
// Option Y // Option Y
let (at, mut ucmd) = at_and_ucmd!(); let (at, mut ucmd) = at_and_ucmd!();
at.touch("b"); at.touch("b");
std::thread::sleep(Duration::from_secs(1)); sleep(Duration::from_millis(100));
at.touch("a"); at.touch("a");
ucmd.args(&["-i", "-u", "a", "b"]) ucmd.args(&["-i", "-u", "a", "b"])
.pipe_in("Y\n") .pipe_in("Y\n")
@ -2241,7 +2241,7 @@ fn test_cp_no_preserve_timestamps() {
previous, previous,
) )
.unwrap(); .unwrap();
sleep(Duration::from_secs(3)); sleep(Duration::from_millis(100));
ucmd.arg(TEST_HELLO_WORLD_SOURCE) ucmd.arg(TEST_HELLO_WORLD_SOURCE)
.arg("--no-preserve=timestamps") .arg("--no-preserve=timestamps")
@ -5686,7 +5686,7 @@ fn test_dir_perm_race_with_preserve_mode_and_ownership() {
if at.dir_exists(&format!("{DEST_DIR}/{SRC_DIR}")) { if at.dir_exists(&format!("{DEST_DIR}/{SRC_DIR}")) {
break; break;
} }
std::thread::sleep(Duration::from_millis(100)); sleep(Duration::from_millis(100));
} }
let mode = at.metadata(&format!("{DEST_DIR}/{SRC_DIR}")).mode(); let mode = at.metadata(&format!("{DEST_DIR}/{SRC_DIR}")).mode();
#[allow(clippy::unnecessary_cast, clippy::cast_lossless)] #[allow(clippy::unnecessary_cast, clippy::cast_lossless)]