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

Disabling compare_xattrs cp and mv related tests on OpenBSD

The test_cp and test_mv have xattr related tests. They should
be disabled on OpenBSD after commit 19d42c0339 disabled the
compare_xattrs function on OpenBSD.

Fixes #6348
This commit is contained in:
Jadi 2024-05-06 20:53:38 +03:30 committed by Ben Wiederhake
parent b029e27dd8
commit 9303f8e5b1
2 changed files with 9 additions and 3 deletions

View file

@ -1569,7 +1569,7 @@ fn test_mv_dir_into_path_slash() {
assert!(at.dir_exists("f/b"));
}
#[cfg(all(unix, not(target_os = "macos")))]
#[cfg(all(unix, not(any(target_os = "macos", target_os = "openbsd"))))]
#[test]
fn test_acl() {
use std::process::Command;