mirror of
https://github.com/uutils/coreutils.git
synced 2026-06-10 15:48:22 -07:00
@@ -3781,7 +3781,7 @@ fn test_acl_preserve() {
|
||||
// calling the command directly. xattr requires some dev packages to be installed
|
||||
// and it adds a complex dependency just for a test
|
||||
match Command::new("setfacl")
|
||||
.args(["-m", "group::rwx", &path1])
|
||||
.args(["-m", "group::rwx", path1])
|
||||
.status()
|
||||
.map(|status| status.code())
|
||||
{
|
||||
|
||||
@@ -294,6 +294,7 @@ fn test_date_for_no_permission_file() {
|
||||
use std::os::unix::fs::PermissionsExt;
|
||||
let file = std::fs::OpenOptions::new()
|
||||
.create(true)
|
||||
.truncate(true)
|
||||
.write(true)
|
||||
.open(at.plus(FILE))
|
||||
.unwrap();
|
||||
|
||||
@@ -1590,7 +1590,7 @@ fn test_acl() {
|
||||
// calling the command directly. xattr requires some dev packages to be installed
|
||||
// and it adds a complex dependency just for a test
|
||||
match Command::new("setfacl")
|
||||
.args(["-m", "group::rwx", &path1])
|
||||
.args(["-m", "group::rwx", path1])
|
||||
.status()
|
||||
.map(|status| status.code())
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user