Skip to content

Commit 8877bb8

Browse files
committed
---
yaml --- r: 121493 b: refs/heads/master c: d8d48e4 h: refs/heads/master i: 121491: f4d0737 v: v3
1 parent e3be8d7 commit 8877bb8

11 files changed

+39
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: eead9e61905a7770fba06bf6ade142b8b8bc23f6
2+
refs/heads/master: d8d48e4aae6a0766112970095d95bd0cac4bd79c
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: bab614f5fa725d248afc5f0530c835f37998ce8f
55
refs/heads/try: 1813e5aa1a03b0596b8de7abd1af31edf5d6098f

trunk/src/test/run-pass/backtrace.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// ignore-pretty FIXME #15189
1112
// ignore-win32 FIXME #13259
1213
extern crate native;
1314

trunk/src/test/run-pass/deriving-cmp-generic-enum.rs

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

11+
// ignore-pretty FIXME #15189
12+
1113
#[deriving(PartialEq, Eq, PartialOrd, Ord)]
1214
enum E<T> {
1315
E0,

trunk/src/test/run-pass/deriving-cmp-generic-struct-enum.rs

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

11+
// ignore-pretty FIXME #15189
12+
1113
#![feature(struct_variant)]
1214

1315
#[deriving(PartialEq, Eq, PartialOrd, Ord)]

trunk/src/test/run-pass/deriving-cmp-generic-struct.rs

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

11+
// ignore-pretty FIXME #15189
12+
1113
#[deriving(PartialEq, Eq, PartialOrd, Ord)]
1214
struct S<T> {
1315
x: T,

trunk/src/test/run-pass/deriving-cmp-generic-tuple-struct.rs

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

11+
// ignore-pretty FIXME #15189
12+
1113
#[deriving(PartialEq, Eq, PartialOrd, Ord)]
1214
struct TS<T>(T,T);
1315

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
// ignore-pretty
12+
13+
#![feature(macro_rules)]
14+
15+
macro_rules! third(($e:expr)=>({let x = 2; *$e.get(x)}))
16+
17+
fn main() {
18+
let x = vec!(10u,11u,12u,13u);
19+
let t = third!(x);
20+
assert_eq!(t,12u);
21+
}

trunk/src/test/run-pass/linear-for-loop.rs

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

11+
// ignore-pretty FIXME #15189
12+
1113
extern crate debug;
1214

1315
pub fn main() {

trunk/src/test/run-pass/task-comm-3.rs

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

11+
// ignore-pretty FIXME #15189
12+
1113
extern crate debug;
1214

1315
use std::task;

trunk/src/test/run-pass/unfold-cross-crate.rs

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

11+
// ignore-pretty FIXME #15189
12+
1113
use std::iter::Unfold;
1214

1315
// Unfold had a bug with 'a that mean it didn't work

trunk/src/test/run-pass/utf8.rs

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

11+
// ignore-pretty FIXME #15189
12+
1113
pub fn main() {
1214
let yen: char = '¥'; // 0xa5
1315
let c_cedilla: char = 'ç'; // 0xe7

0 commit comments

Comments
 (0)