Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions tests/by-util/test_tail.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1965,8 +1965,13 @@ fn test_follow_name_truncate3() {
.stdout_only(expected_stdout);
}


Comment thread
sylvestre marked this conversation as resolved.
Outdated
#[test]
#[cfg(all(not(target_vendor = "apple"), not(target_os = "windows")))] // FIXME: for currently not working platforms
#[cfg(all(
not(target_os = "apple"),
Comment thread
sylvestre marked this conversation as resolved.
Outdated
not(target_os = "windows"),
not(feature = "feat_selinux") // flaky
))] // FIXME: for currently not working platforms
fn test_follow_name_truncate4() {
// Truncating a file with the same content it already has should not trigger a truncate event

Expand Down Expand Up @@ -4379,7 +4384,8 @@ fn test_args_when_directory_given_shorthand_big_f_together_with_retry() {
not(target_vendor = "apple"),
not(target_os = "windows"),
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() {
let scene = TestScenario::new(util_name!());
Expand Down