Skip to content

Commit

Permalink
tests/rm: add test for issue uutils#3722
Browse files Browse the repository at this point in the history
  • Loading branch information
niyaznigmatullin committed Jul 17, 2022
1 parent 0ea3a73 commit 028c08c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions tests/by-util/test_rm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -347,3 +347,19 @@ fn test_rm_interactive_never() {

assert!(!at.file_exists(file_2));
}

#[test]
#[ignore = "issue #3722"]
fn test_rm_directory_rights_rm1() {
let (at, mut ucmd) = at_and_ucmd!();
at.mkdir_all("b/a/p");
at.mkdir_all("b/c");
at.mkdir_all("b/d");
at.set_readonly("b/a");
ucmd.args(&["-rf", "b"])
.fails()
.stderr_contains("Permission denied");
assert!(at.dir_exists("b/a/p"));
assert!(!at.dir_exists("b/c"));
assert!(!at.dir_exists("b/d"));
}

0 comments on commit 028c08c

Please sign in to comment.