Skip to content

Commit 5978330

Browse files
committed
---
yaml --- r: 121792 b: refs/heads/snap-stage3 c: d8d48e4 h: refs/heads/master v: v3
1 parent 4f41c93 commit 5978330

11 files changed

+39
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: d0983872efeea757600031a081a2eff9676fe895
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: eead9e61905a7770fba06bf6ade142b8b8bc23f6
4+
refs/heads/snap-stage3: d8d48e4aae6a0766112970095d95bd0cac4bd79c
55
refs/heads/try: 18dc3bc9e3314a250c0718ab329938e676410cdf
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/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

branches/snap-stage3/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,

branches/snap-stage3/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)]

branches/snap-stage3/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,

branches/snap-stage3/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+
}

branches/snap-stage3/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() {

branches/snap-stage3/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;

branches/snap-stage3/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

branches/snap-stage3/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)