Disable the non_blocking_logger test on macOS (#5522)
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
This commit is contained in:
parent
60cfde6f0c
commit
7d90b3dee0
|
@ -1364,7 +1364,12 @@ async fn rpc_endpoint(parallel_cpu_threads: bool) -> Result<()> {
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Test that Zebra's non-blocking logger works, by creating lots of debug output, but not reading the logs.
|
||||||
|
/// Then make sure Zebra drops excess log lines. (Previously, it would block waiting for logs to be read.)
|
||||||
|
///
|
||||||
|
/// This test is unreliable and sometimes hangs on macOS.
|
||||||
#[test]
|
#[test]
|
||||||
|
#[cfg(not(target_os = "macos"))]
|
||||||
fn non_blocking_logger() -> Result<()> {
|
fn non_blocking_logger() -> Result<()> {
|
||||||
use futures::FutureExt;
|
use futures::FutureExt;
|
||||||
use std::{sync::mpsc, time::Duration};
|
use std::{sync::mpsc, time::Duration};
|
||||||
|
|
Loading…
Reference in New Issue