Skip to content

Commit d9af611

Browse files
committed
install: disable two tests on macOS x86_64
they run in timeouts in the CI with macos-latest
1 parent 7b75aca commit d9af611

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/by-util/test_install.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -693,6 +693,8 @@ fn strip_source_file() -> &'static str {
693693

694694
#[test]
695695
#[cfg(not(windows))]
696+
// FIXME test runs in a timeout with macos-latest on x86_64 in the CI
697+
#[cfg(not(all(target_os = "macos", target_arch = "x86_64")))]
696698
fn test_install_and_strip() {
697699
let scene = TestScenario::new(util_name!());
698700
let at = &scene.fixtures;
@@ -716,6 +718,8 @@ fn test_install_and_strip() {
716718

717719
#[test]
718720
#[cfg(not(windows))]
721+
// FIXME test runs in a timeout with macos-latest on x86_64 in the CI
722+
#[cfg(not(all(target_os = "macos", target_arch = "x86_64")))]
719723
fn test_install_and_strip_with_program() {
720724
let scene = TestScenario::new(util_name!());
721725
let at = &scene.fixtures;

0 commit comments

Comments
 (0)