1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 20:17:45 +00:00

touch: change message when trailing slash

This commit is contained in:
n4n5 2024-06-30 19:00:54 +02:00
parent 371ba28db7
commit 635ad16c63
No known key found for this signature in database
GPG key ID: 79414EADC6D4B457
2 changed files with 32 additions and 2 deletions

View file

@ -689,10 +689,23 @@ fn test_touch_system_fails() {
}
#[test]
#[cfg(not(target_os = "windows"))]
fn test_touch_trailing_slash() {
let (_at, mut ucmd) = at_and_ucmd!();
let file = "no-file/";
ucmd.args(&[file]).fails();
ucmd.args(&[file]).fails().stderr_only(format!(
"touch: cannot touch '{file}': No such file or directory\n"
));
}
#[test]
#[cfg(target_os = "windows")]
fn test_touch_trailing_slash_windows() {
let (_at, mut ucmd) = at_and_ucmd!();
let file = "no-file/";
ucmd.args(&[file]).fails().stderr_only(format!(
"touch: cannot touch '{file}': The filename, directory name, or volume label syntax is incorrect.\n"
));
}
#[test]