From 81d9717864f925c12229098fe7570b53bf8824cd Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Mon, 14 Nov 2011 18:51:15 -0800 Subject: [PATCH] xfail-fast run-pass/native-dupe.rs This test calls the task pin function which has side effects and causes other tests to lock. --- src/test/run-pass/native-dupe.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/test/run-pass/native-dupe.rs b/src/test/run-pass/native-dupe.rs index 717db324348..fd0b941980a 100644 --- a/src/test/run-pass/native-dupe.rs +++ b/src/test/run-pass/native-dupe.rs @@ -1,3 +1,6 @@ +// xfail-fast - Somehow causes check-fast to livelock?? Probably because we're +// calling pin_task and that's having wierd side-effects. + native "cdecl" mod rustrt1 = "rustrt" { fn pin_task(); }