diff --git a/tests/by-util/test_df.rs b/tests/by-util/test_df.rs index c67af5cba..f629944c3 100644 --- a/tests/by-util/test_df.rs +++ b/tests/by-util/test_df.rs @@ -357,6 +357,10 @@ fn test_include_exclude_same_type() { ); } +#[cfg_attr( + all(target_arch = "aarch64", target_os = "linux"), + ignore = "Issue #7158 - Test not supported on ARM64 Linux" +)] #[test] fn test_total() { // Example output: diff --git a/tests/by-util/test_uptime.rs b/tests/by-util/test_uptime.rs index 12c3a3d42..b45fcbc3e 100644 --- a/tests/by-util/test_uptime.rs +++ b/tests/by-util/test_uptime.rs @@ -99,6 +99,10 @@ fn test_uptime_with_non_existent_file() { // This will pass #[test] #[cfg(not(any(target_os = "openbsd", target_os = "macos")))] +#[cfg_attr( + all(target_arch = "aarch64", target_os = "linux"), + ignore = "Issue #7159 - Test not supported on ARM64 Linux" +)] #[allow(clippy::too_many_lines, clippy::items_after_statements)] fn test_uptime_with_file_containing_valid_boot_time_utmpx_record() { // This test will pass for freebsd but we currently don't support changing the utmpx file for diff --git a/tests/by-util/test_who.rs b/tests/by-util/test_who.rs index 36325fe7c..2d438902e 100644 --- a/tests/by-util/test_who.rs +++ b/tests/by-util/test_who.rs @@ -26,6 +26,10 @@ fn test_count() { #[cfg(unix)] #[test] #[cfg(not(target_os = "openbsd"))] +#[cfg_attr( + all(target_arch = "aarch64", target_os = "linux"), + ignore = "Issue #7174 - Test not supported on ARM64 Linux" +)] fn test_boot() { let ts = TestScenario::new(util_name!()); for opt in ["-b", "--boot", "--b"] {