mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
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:
commit
d467ce715b
1 changed files with 6 additions and 0 deletions
|
@ -2,6 +2,8 @@
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
* 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/. */
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
|
#![allow(unused_imports)]
|
||||||
|
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate lazy_static;
|
extern crate lazy_static;
|
||||||
|
|
||||||
|
@ -127,6 +129,8 @@ fn test_hang_monitoring() {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
// https://github.com/servo/servo/issues/28270
|
||||||
|
#[cfg(not(target_os = "windows"))]
|
||||||
fn test_hang_monitoring_unregister() {
|
fn test_hang_monitoring_unregister() {
|
||||||
let _lock = SERIAL.lock().unwrap();
|
let _lock = SERIAL.lock().unwrap();
|
||||||
|
|
||||||
|
@ -161,6 +165,8 @@ fn test_hang_monitoring_unregister() {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
// https://github.com/servo/servo/issues/28270
|
||||||
|
#[cfg(not(target_os = "windows"))]
|
||||||
fn test_hang_monitoring_exit_signal() {
|
fn test_hang_monitoring_exit_signal() {
|
||||||
let _lock = SERIAL.lock().unwrap();
|
let _lock = SERIAL.lock().unwrap();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue