Skip to content

Commit c779c37

Browse files
committed
---
yaml --- r: 5063 b: refs/heads/master c: 66bc014 h: refs/heads/master i: 5061: 843914a 5059: 40c3f81 5055: 749fb47 v: v3
1 parent ded1fcb commit c779c37

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+120
-42
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: 574194f6bcfb90b9f8486002b83babc4c21208c0
2+
refs/heads/master: 66bc01472000ffe38798c9ecc03df1e0e95cb635

trunk/mk/pp.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ else
99
$(wildcard $(S)src/fuzzer/*.rs)
1010

1111
PP_INPUTS_FILTERED = $(shell echo $(PP_INPUTS) | xargs grep -L \
12-
"no-reformat\|xfail-pretty\|xfail-test")
12+
"no-reformat\|xfail-pretty\|xfail-stage2")
1313
endif
1414

1515
reformat: $(SREQ1)

trunk/src/test/compile-fail/bad-type-env-capture.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
// xfail-test
1+
// xfail-stage1
2+
// xfail-stage2
3+
// xfail-stage3
24
// error-pattern: attempted dynamic environment-capture
35
fn foo<T>() {
46
obj bar(b: T) { }

trunk/src/test/compile-fail/constrained-type-missing-check.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
// -*- rust -*-
2-
// xfail-test
2+
// xfail-stage1
3+
// xfail-stage2
4+
// xfail-stage3
35
// error-pattern:Unsatisfied precondition
46

57
tag list { cons(int, @list); nil; }

trunk/src/test/compile-fail/dead-code-be.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
// xfail-test
1+
// xfail-stage1
2+
// xfail-stage2
3+
// xfail-stage3
24
// -*- rust -*-
35

46
// error-pattern: dead

trunk/src/test/compile-fail/dead-code-ret.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
// xfail-test
1+
// xfail-stage1
2+
// xfail-stage2
3+
// xfail-stage3
24
// -*- rust -*-
35

46
// error-pattern: dead

trunk/src/test/compile-fail/infinite-tag-type-recursion.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
// xfail-test
1+
// xfail-stage1
2+
// xfail-stage2
3+
// xfail-stage3
24
// -*- rust -*-
35

46
// error-pattern: tag of infinite size

trunk/src/test/compiletest/header.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,12 @@ fn is_test_ignored(config: &config, testfile: &istr) -> bool {
5959
let found = false;
6060
for each ln: istr in iter_header(testfile) {
6161
// FIXME: Can't return or break from iterator
62-
found = found || parse_name_directive(ln, ~"xfail-test");
62+
found = found
63+
|| parse_name_directive(ln, ~"xfail-"
64+
+ config.stage_id);
6365
if (config.mode == common::mode_pretty) {
64-
found = found || parse_name_directive(ln, ~"xfail-pretty");
66+
found = found
67+
|| parse_name_directive(ln, ~"xfail-pretty");
6568
}
6669
}
6770
ret found;

trunk/src/test/run-fail/fail-parens.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
// xfail-test
1+
// xfail-stage1
2+
// xfail-stage2
3+
// xfail-stage3
24
// Fail statements without arguments need to be disambiguated in
35
// certain positions
46
// error-pattern:explicit-failure

trunk/src/test/run-fail/task-comm-14.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
// xfail-test
1+
// xfail-stage1
2+
// xfail-stage2
3+
// xfail-stage3
24
io fn main() {
35
let port<int> po = port();
46

0 commit comments

Comments
 (0)