1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 11:07:44 +00:00

Disable test_sort::test_compress_fail (for real) & test_cp::test_cp_arg_interactive_update on android

This commit is contained in:
Sylvestre Ledru 2023-04-29 20:39:18 +02:00
parent ba8fa58a9a
commit 53ae5c33c9
2 changed files with 3 additions and 1 deletions

View file

@ -257,6 +257,7 @@ fn test_cp_arg_interactive() {
}
#[test]
#[cfg(not(target_os = "android"))]
fn test_cp_arg_interactive_update() {
// -u -i won't show the prompt to validate the override or not
// Therefore, the error code will be 0

View file

@ -876,7 +876,7 @@ fn sort_empty_chunk() {
}
#[test]
#[cfg(target_os = "linux")]
#[cfg(any(target_os = "linux", target_os = "android"))]
fn test_compress() {
new_ucmd!()
.args(&[
@ -915,6 +915,7 @@ fn test_compress_merge() {
}
#[test]
#[cfg(not(target_os = "android"))]
fn test_compress_fail() {
#[cfg(not(windows))]
TestScenario::new(util_name!())