Merge pull request #4307 from Joining7943/tail-disable-intermittent-test

`tests/tail`: Disable `test_follow_with_pid` on freebsd
This commit is contained in:
Sylvestre Ledru 2023-01-28 18:13:38 +01:00 committed by GitHub
commit c496d0836f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -626,11 +626,14 @@ fn test_follow_invalid_pid() {
}
// FixME: test PASSES for usual windows builds, but fails for coverage testing builds (likely related to the specific RUSTFLAGS '-Zpanic_abort_tests -Cpanic=abort') This test also breaks tty settings under bash requiring a 'stty sane' or reset. // spell-checker:disable-line
// FIXME: FreeBSD: See issue https://github.com/uutils/coreutils/issues/4306
// Fails intermittently in the CI, but couldn't reproduce the failure locally.
#[test]
#[cfg(all(
not(target_vendor = "apple"),
not(target_os = "windows"),
not(target_os = "android")
not(target_os = "android"),
not(target_os = "freebsd")
))] // FIXME: for currently not working platforms
fn test_follow_with_pid() {
use std::process::Command;