summaryrefslogtreecommitdiffstats
path: root/tests/by-util
diff options
context:
space:
mode:
authorLaurent Cheylus <foxy@free.fr>2024-07-06 22:29:16 +0200
committerLaurent Cheylus <foxy@free.fr>2024-07-06 22:29:16 +0200
commit643f93be2f3782257f3ef52685c9598fd4e179df (patch)
treed17da4b4799189819c722dccdf61f8cb6ef747a9 /tests/by-util
parent584a9d290f97298422bb424154d7b72cc92bbc84 (diff)
tests: disable failed tests for head on OpenBSD
Signed-off-by: Laurent Cheylus <foxy@free.fr>
Diffstat (limited to 'tests/by-util')
-rw-r--r--tests/by-util/test_head.rs12
1 files changed, 8 insertions, 4 deletions
diff --git a/tests/by-util/test_head.rs b/tests/by-util/test_head.rs
index 11a18f34c..296d7dab7 100644
--- a/tests/by-util/test_head.rs
+++ b/tests/by-util/test_head.rs
@@ -379,7 +379,8 @@ fn test_presume_input_pipe_5_chars() {
not(target_os = "windows"),
not(target_os = "macos"),
not(target_os = "android"),
- not(target_os = "freebsd")
+ not(target_os = "freebsd"),
+ not(target_os = "openbsd")
))]
#[test]
fn test_read_backwards_bytes_proc_fs_version() {
@@ -394,7 +395,8 @@ fn test_read_backwards_bytes_proc_fs_version() {
not(target_os = "windows"),
not(target_os = "macos"),
not(target_os = "android"),
- not(target_os = "freebsd")
+ not(target_os = "freebsd"),
+ not(target_os = "openbsd")
))]
#[test]
fn test_read_backwards_bytes_proc_fs_modules() {
@@ -409,7 +411,8 @@ fn test_read_backwards_bytes_proc_fs_modules() {
not(target_os = "windows"),
not(target_os = "macos"),
not(target_os = "android"),
- not(target_os = "freebsd")
+ not(target_os = "freebsd"),
+ not(target_os = "openbsd")
))]
#[test]
fn test_read_backwards_lines_proc_fs_modules() {
@@ -424,7 +427,8 @@ fn test_read_backwards_lines_proc_fs_modules() {
not(target_os = "windows"),
not(target_os = "macos"),
not(target_os = "android"),
- not(target_os = "freebsd")
+ not(target_os = "freebsd"),
+ not(target_os = "openbsd")
))]
#[test]
fn test_read_backwards_bytes_sys_kernel_profiling() {