diff options
author | Josh Matthews <josh@joshmatthews.net> | 2021-05-26 19:32:30 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-26 19:32:30 -0400 |
commit | 1a1590fd53b2d350f60bc8d5a2c73ea3a0a13b9e (patch) | |
tree | 3fcbe79b083a63451670480ea6d62b1f106e3f5e /components/background_hang_monitor | |
parent | 5d5f9a0a3199dda29708365619810440b3a5eb5a (diff) | |
download | servo-1a1590fd53b2d350f60bc8d5a2c73ea3a0a13b9e.tar.gz servo-1a1590fd53b2d350f60bc8d5a2c73ea3a0a13b9e.zip |
Disable intermittent unit tests on macos.
Diffstat (limited to 'components/background_hang_monitor')
-rw-r--r-- | components/background_hang_monitor/tests/hang_monitor_tests.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/background_hang_monitor/tests/hang_monitor_tests.rs b/components/background_hang_monitor/tests/hang_monitor_tests.rs index dbccb5e50de..23b32dd1bbb 100644 --- a/components/background_hang_monitor/tests/hang_monitor_tests.rs +++ b/components/background_hang_monitor/tests/hang_monitor_tests.rs @@ -130,7 +130,7 @@ fn test_hang_monitoring() { #[test] // https://github.com/servo/servo/issues/28270 -#[cfg(not(target_os = "windows"))] +#[cfg(not(any(target_os = "windows", target_os = "macos")))] fn test_hang_monitoring_unregister() { let _lock = SERIAL.lock().unwrap(); @@ -166,7 +166,7 @@ fn test_hang_monitoring_unregister() { #[test] // https://github.com/servo/servo/issues/28270 -#[cfg(not(target_os = "windows"))] +#[cfg(not(any(target_os = "windows", target_os = "macos")))] fn test_hang_monitoring_exit_signal() { let _lock = SERIAL.lock().unwrap(); |