Skip to content

Commit 885f0a2

Browse files
committed
testsuite: Un-xfail test for #3029 and move to run-fail
1 parent b9920b0 commit 885f0a2

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/test/run-pass/issue-3029.rs renamed to src/test/run-fail/issue-3029.rs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,10 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// xfail-test
12-
fn fail_then_concat() {
11+
// error-pattern:so long
12+
fn main() {
1313
let x = ~[], y = ~[3];
14-
fail;
14+
fail ~"so long";
1515
x += y;
1616
~"good" + ~"bye";
1717
}
18-

0 commit comments

Comments
 (0)