xfail some tests that hang (instead of segfaulting) since eafb6789a2

See issue #936
This commit is contained in:
Marijn Haverbeke 2011-09-18 22:13:54 +02:00
parent eafb6789a2
commit 5f44a1356e
2 changed files with 5 additions and 0 deletions

View File

@ -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

View File

@ -1,5 +1,7 @@
// error-pattern:too many arguments
// xfail-test (issue #936)
use std;
fn main() { let s = #fmt["%s", "test", "test"]; }