Skip to content

Commit

Permalink
Ignore freebsd in accumulated_cpu_time test
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed Jan 21, 2025
1 parent 603d1f9 commit c25010a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -946,7 +946,10 @@ fn accumulated_cpu_time() {
atomic.store(true, Ordering::Relaxed);
}

if !sysinfo::IS_SUPPORTED_SYSTEM || cfg!(feature = "apple-sandbox") {
if !sysinfo::IS_SUPPORTED_SYSTEM
|| cfg!(feature = "apple-sandbox")
|| cfg!(target_os = "freebsd")
{
return;
}

Expand Down

0 comments on commit c25010a

Please sign in to comment.