Skip to content

Commit

Permalink
Disabling xattrs tests on OpenBSD
Browse files Browse the repository at this point in the history
The test_compare_xattrs test fails on OpenBSD because OpenBSD does
not support xattrs. Disabling this test for target_os = openbsd
resolved the issue.

Fixes #6348
  • Loading branch information
jadijadi committed May 4, 2024
1 parent 3b96ff1 commit c42b0eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/common/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3611,7 +3611,7 @@ mod tests {
assert!(command.tmpd.is_some());
}

#[cfg(all(unix, not(target_os = "macos")))]
#[cfg(all(unix, not(any(target_os = "macos", target_os = "openbsd"))))]
#[test]
fn test_compare_xattrs() {
use tempfile::tempdir;
Expand Down

0 comments on commit c42b0eb

Please sign in to comment.