From 7e046edebbd03ecc33e267085df426fd5bba27a8 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Mon, 19 Sep 2011 18:00:41 -0700 Subject: [PATCH] Revert "xfail some tests that hang (instead of segfaulting) since eafb6789a2" This reverts commit 5f44a1356e2b0adce5157f5e331ab9a55e891b0a. Issue #936 --- src/test/compile-fail/extfmt-non-literal2.rs | 3 --- src/test/compile-fail/extfmt-too-many-args.rs | 2 -- 2 files changed, 5 deletions(-) diff --git a/src/test/compile-fail/extfmt-non-literal2.rs b/src/test/compile-fail/extfmt-non-literal2.rs index 03f2810670ab..8a2d7c4bbed3 100644 --- a/src/test/compile-fail/extfmt-non-literal2.rs +++ b/src/test/compile-fail/extfmt-non-literal2.rs @@ -1,8 +1,5 @@ // error-pattern: literal -// xfail-test (issue #936) - - fn main() { // #fmt's first argument must be a literal. Hopefully this // restriction can be eased eventually to just require a diff --git a/src/test/compile-fail/extfmt-too-many-args.rs b/src/test/compile-fail/extfmt-too-many-args.rs index 869f5be9c9fe..4c91da227e1b 100644 --- a/src/test/compile-fail/extfmt-too-many-args.rs +++ b/src/test/compile-fail/extfmt-too-many-args.rs @@ -1,7 +1,5 @@ // error-pattern:too many arguments -// xfail-test (issue #936) - use std; fn main() { let s = #fmt["%s", "test", "test"]; }