Skip to content

Commit d1e3e62

Browse files
committed
*Properly* ignore the hanging linked failure test
1 parent 07bb1ae commit d1e3e62

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/libcore/task.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1156,6 +1156,9 @@ fn test_spawn_raw_unsupervise() {
11561156
// The following 8 tests test the following 2^3 combinations:
11571157
// {un,}linked {un,}supervised failure propagation {up,down}wards.
11581158

1159+
// !!! These tests are dangerous. If something is buggy, they will hang, !!!
1160+
// !!! instead of exiting cleanly. This might wedge the buildbots. !!!
1161+
11591162
#[test] #[ignore(cfg(windows))]
11601163
fn test_spawn_unlinked_unsup_no_fail_down() { // grandchild sends on a port
11611164
let po = comm::port();
@@ -1232,7 +1235,7 @@ fn test_spawn_linked_unsup_fail_down() { // parent fails; child fails
12321235

12331236
// A bonus linked failure test
12341237

1235-
#[test] #[should_fail] #[ignore(cfg(windows))]
1238+
#[test] #[should_fail] // #[ignore(cfg(windows))]
12361239
#[ignore] // FIXME (#1868) (bblum) make this work
12371240
fn test_spawn_unlinked_sup_propagate_grandchild() {
12381241
let builder = task::builder();

0 commit comments

Comments
 (0)