mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 03:27:44 +00:00
Merge pull request #7756 from uutils/sylvestre-patch-5
tail: Ignore a few tests on selinux
This commit is contained in:
commit
a37c4a6dc6
1 changed files with 7 additions and 2 deletions
|
@ -1966,7 +1966,11 @@ fn test_follow_name_truncate3() {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
#[cfg(all(not(target_vendor = "apple"), not(target_os = "windows")))] // FIXME: for currently not working platforms
|
#[cfg(all(
|
||||||
|
not(target_vendor = "apple"),
|
||||||
|
not(target_os = "windows"),
|
||||||
|
not(feature = "feat_selinux") // flaky
|
||||||
|
))] // FIXME: for currently not working platforms
|
||||||
fn test_follow_name_truncate4() {
|
fn test_follow_name_truncate4() {
|
||||||
// Truncating a file with the same content it already has should not trigger a truncate event
|
// Truncating a file with the same content it already has should not trigger a truncate event
|
||||||
|
|
||||||
|
@ -4379,7 +4383,8 @@ fn test_args_when_directory_given_shorthand_big_f_together_with_retry() {
|
||||||
not(target_vendor = "apple"),
|
not(target_vendor = "apple"),
|
||||||
not(target_os = "windows"),
|
not(target_os = "windows"),
|
||||||
not(target_os = "freebsd"),
|
not(target_os = "freebsd"),
|
||||||
not(target_os = "openbsd")
|
not(target_os = "openbsd"),
|
||||||
|
not(feature = "feat_selinux") // flaky
|
||||||
))]
|
))]
|
||||||
fn test_follow_when_files_are_pointing_to_same_relative_file_and_file_stays_same_size() {
|
fn test_follow_when_files_are_pointing_to_same_relative_file_and_file_stays_same_size() {
|
||||||
let scene = TestScenario::new(util_name!());
|
let scene = TestScenario::new(util_name!());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue