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

Merge pull request #5813 from cakebaker/head_disable_tests_on_android

head: disable some tests on Android
This commit is contained in:
Sylvestre Ledru 2024-01-08 18:01:51 +01:00 committed by GitHub
commit 3552b4af61
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -382,6 +382,7 @@ fn test_presume_input_pipe_5_chars() {
#[cfg(all(
not(target_os = "windows"),
not(target_os = "macos"),
not(target_os = "android"),
not(target_os = "freebsd")
))]
#[test]
@ -396,6 +397,7 @@ fn test_read_backwards_bytes_proc_fs_version() {
#[cfg(all(
not(target_os = "windows"),
not(target_os = "macos"),
not(target_os = "android"),
not(target_os = "freebsd")
))]
#[test]
@ -410,6 +412,7 @@ fn test_read_backwards_bytes_proc_fs_modules() {
#[cfg(all(
not(target_os = "windows"),
not(target_os = "macos"),
not(target_os = "android"),
not(target_os = "freebsd")
))]
#[test]
@ -424,6 +427,7 @@ fn test_read_backwards_lines_proc_fs_modules() {
#[cfg(all(
not(target_os = "windows"),
not(target_os = "macos"),
not(target_os = "android"),
not(target_os = "freebsd")
))]
#[test]