File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -357,6 +357,10 @@ fn test_include_exclude_same_type() {
357357 ) ;
358358}
359359
360+ #[ cfg_attr(
361+ all( target_arch = "aarch64" , target_os = "linux" ) ,
362+ ignore = "Issue #7158 - Test not supported on ARM64 Linux"
363+ ) ]
360364#[ test]
361365fn test_total ( ) {
362366 // Example output:
Original file line number Diff line number Diff line change @@ -99,6 +99,10 @@ fn test_uptime_with_non_existent_file() {
9999// This will pass
100100#[ test]
101101#[ cfg( not( any( target_os = "openbsd" , target_os = "macos" ) ) ) ]
102+ #[ cfg_attr(
103+ all( target_arch = "aarch64" , target_os = "linux" ) ,
104+ ignore = "Issue #7159 - Test not supported on ARM64 Linux"
105+ ) ]
102106#[ allow( clippy:: too_many_lines, clippy:: items_after_statements) ]
103107fn test_uptime_with_file_containing_valid_boot_time_utmpx_record ( ) {
104108 // This test will pass for freebsd but we currently don't support changing the utmpx file for
You can’t perform that action at this time.
0 commit comments