From d9af611a9f015340cea0d0d1f4a4cee65743b312 Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Sat, 2 Aug 2025 17:14:00 +0200 Subject: [PATCH] install: disable two tests on macOS x86_64 they run in timeouts in the CI with macos-latest --- tests/by-util/test_install.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/by-util/test_install.rs b/tests/by-util/test_install.rs index 900e88a32..ea3448bbb 100644 --- a/tests/by-util/test_install.rs +++ b/tests/by-util/test_install.rs @@ -693,6 +693,8 @@ fn strip_source_file() -> &'static str { #[test] #[cfg(not(windows))] +// FIXME test runs in a timeout with macos-latest on x86_64 in the CI +#[cfg(not(all(target_os = "macos", target_arch = "x86_64")))] fn test_install_and_strip() { let scene = TestScenario::new(util_name!()); let at = &scene.fixtures; @@ -716,6 +718,8 @@ fn test_install_and_strip() { #[test] #[cfg(not(windows))] +// FIXME test runs in a timeout with macos-latest on x86_64 in the CI +#[cfg(not(all(target_os = "macos", target_arch = "x86_64")))] fn test_install_and_strip_with_program() { let scene = TestScenario::new(util_name!()); let at = &scene.fixtures;