mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 03:27:44 +00:00
issues: 7158, 7159 and 7174 - ignore linux arm64 specific test
This commit is contained in:
parent
4caacf8d3e
commit
d66932f593
3 changed files with 12 additions and 0 deletions
|
@ -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]
|
#[test]
|
||||||
fn test_total() {
|
fn test_total() {
|
||||||
// Example output:
|
// Example output:
|
||||||
|
|
|
@ -99,6 +99,10 @@ fn test_uptime_with_non_existent_file() {
|
||||||
// This will pass
|
// This will pass
|
||||||
#[test]
|
#[test]
|
||||||
#[cfg(not(any(target_os = "openbsd", target_os = "macos")))]
|
#[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)]
|
#[allow(clippy::too_many_lines, clippy::items_after_statements)]
|
||||||
fn test_uptime_with_file_containing_valid_boot_time_utmpx_record() {
|
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
|
// This test will pass for freebsd but we currently don't support changing the utmpx file for
|
||||||
|
|
|
@ -26,6 +26,10 @@ fn test_count() {
|
||||||
#[cfg(unix)]
|
#[cfg(unix)]
|
||||||
#[test]
|
#[test]
|
||||||
#[cfg(not(target_os = "openbsd"))]
|
#[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() {
|
fn test_boot() {
|
||||||
let ts = TestScenario::new(util_name!());
|
let ts = TestScenario::new(util_name!());
|
||||||
for opt in ["-b", "--boot", "--b"] {
|
for opt in ["-b", "--boot", "--b"] {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue