diff --git a/src/test/compile-fail/extfmt-non-literal2.rs b/src/test/compile-fail/extfmt-non-literal2.rs index 8a2d7c4bbed3..03f2810670ab 100644 --- a/src/test/compile-fail/extfmt-non-literal2.rs +++ b/src/test/compile-fail/extfmt-non-literal2.rs @@ -1,5 +1,8 @@ // 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 4c91da227e1b..869f5be9c9fe 100644 --- a/src/test/compile-fail/extfmt-too-many-args.rs +++ b/src/test/compile-fail/extfmt-too-many-args.rs @@ -1,5 +1,7 @@ // error-pattern:too many arguments +// xfail-test (issue #936) + use std; fn main() { let s = #fmt["%s", "test", "test"]; }