Skip to content

Commit fc67ddd

Browse files
committed
XFAIL some tests in stage 0
1 parent 8d2706c commit fc67ddd

File tree

8 files changed

+14
-0
lines changed

8 files changed

+14
-0
lines changed

src/test/compile-fail/macro-2.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// xfail-stage0
12
//error-pattern:expanded as an identifier
23
fn main() {
34
#macro([#mylambda(x, body), {fn f(int x) -> int {ret body}; f}]);

src/test/compile-fail/macro.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// xfail-stage0
12
//error-pattern:no clauses match
23

34
fn main() {

src/test/run-pass/binops.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// xfail-stage0
2+
13
// Binop corner cases
24

35
fn test_nil() {

src/test/run-pass/box-pattern.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// xfail-stage0
2+
13
type foo = rec(int a, uint b);
24
tag bar {
35
u(@foo);

src/test/run-pass/macro-2.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// xfail-stage0
2+
13
fn main() {
24
#macro([#mylambda(x,body), {fn f(int x) -> int { ret body }; f}]);
35

src/test/run-pass/macro-3.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// xfail-stage0
2+
13
fn main() {
24
#macro([#trivial(), 1*2*4*2*1]);
35

src/test/run-pass/macro.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// xfail-stage0
2+
13
fn main() {
24
#macro([#m1(a), a*4]);
35
assert (#m1(2) == 8);

src/test/run-pass/record-pat.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// xfail-stage0
2+
13
tag t1 { a(int); b(uint); }
24
type t2 = rec(t1 x, int y);
35
tag t3 { c(t2, uint); }

0 commit comments

Comments
 (0)