Auto merge of #28271 - servo:jdm-patch-46, r=jdm

Disable hanging hang monitor tests on windows

This avoids long-running builds due to #28270.
This commit is contained in:
bors-servo 2021-03-14 23:46:35 -04:00 committed by GitHub
commit d467ce715b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,6 +2,8 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
#![allow(unused_imports)]
#[macro_use]
extern crate lazy_static;
@ -127,6 +129,8 @@ fn test_hang_monitoring() {
}
#[test]
// https://github.com/servo/servo/issues/28270
#[cfg(not(target_os = "windows"))]
fn test_hang_monitoring_unregister() {
let _lock = SERIAL.lock().unwrap();
@ -161,6 +165,8 @@ fn test_hang_monitoring_unregister() {
}
#[test]
// https://github.com/servo/servo/issues/28270
#[cfg(not(target_os = "windows"))]
fn test_hang_monitoring_exit_signal() {
let _lock = SERIAL.lock().unwrap();