mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-27 19:17:43 +00:00
tests/tail: Disable test_follow_with_pid on freebsd because of intermittent failures in the ci
This commit is contained in:
parent
3ad36a49cb
commit
c809bb3888
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…
Add table
Add a link
Reference in a new issue