1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 19:47:45 +00:00

silent the failed tests for now on freebsd

This commit is contained in:
Sylvestre Ledru 2021-08-24 08:53:20 +02:00
parent 29aa4b668e
commit 697dca25cb
6 changed files with 22 additions and 8 deletions

View file

@ -563,7 +563,8 @@ fn strip_source_file() -> &'static str {
}
#[test]
#[cfg(not(windows))]
// FixME: Freebsd fails on 'No such file or directory'
#[cfg(not(any(windows, target_os = "freebsd")))]
fn test_install_and_strip() {
let scene = TestScenario::new(util_name!());
let at = &scene.fixtures;
@ -586,7 +587,8 @@ fn test_install_and_strip() {
}
#[test]
#[cfg(not(windows))]
// FixME: Freebsd fails on 'No such file or directory'
#[cfg(not(any(windows, target_os = "freebsd")))]
fn test_install_and_strip_with_program() {
let scene = TestScenario::new(util_name!());
let at = &scene.fixtures;