mirror of
https://github.com/uutils/coreutils
synced 2024-12-13 14:52:41 +00:00
Merge pull request #4307 from Joining7943/tail-disable-intermittent-test
`tests/tail`: Disable `test_follow_with_pid` on freebsd
This commit is contained in:
commit
c496d0836f
1 changed files with 4 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue