Skip to content

Commit 47c7acb

Browse files
committed
---
yaml --- r: 50872 b: refs/heads/try c: ec96096 h: refs/heads/master v: v3
1 parent b80818a commit 47c7acb

26 files changed

+28
-28
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 5f13e9ccc2e3328d4cd8ca49f84e6840dd998346
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: f7a2371c176663d59062ec5158f39faecba45768
5-
refs/heads/try: 9966eaaba4d08dd9eb3cbbb1a92555f23d5f1a10
5+
refs/heads/try: ec960963c15d833d33559e3adef9da41d30399e4
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/src/test/run-fail/assert-eq-macro-fail.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// error-pattern:expected: 15, given: 14
22

3-
#[deriving_eq]
3+
#[deriving(Eq)]
44
struct Point { x : int }
55

66
fn main() {

branches/try/src/test/run-pass/assert-eq-macro-success.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#[deriving_eq]
1+
#[deriving(Eq)]
22
struct Point { x : int }
33

44
fn main() {

branches/try/src/test/run-pass/auto-encode.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ impl cmp::Eq for CLike {
121121

122122
#[auto_encode]
123123
#[auto_decode]
124-
#[deriving_eq]
124+
#[deriving(Eq)]
125125
struct Spanned<T> {
126126
lo: uint,
127127
hi: uint,

branches/try/src/test/run-pass/binops.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ mod test {
8888
}
8989
}
9090

91-
#[deriving_eq]
91+
#[deriving(Eq)]
9292
struct p {
9393
x: int,
9494
y: int,

branches/try/src/test/run-pass/deriving-clone-enum.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#[deriving_clone]
1+
#[deriving(Clone)]
22
enum E {
33
A,
44
B(()),

branches/try/src/test/run-pass/deriving-clone-generic-enum.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#[deriving_clone]
1+
#[deriving(Clone)]
22
enum E<T,U> {
33
A(T),
44
B(T,U),

branches/try/src/test/run-pass/deriving-clone-generic-struct.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#[deriving_clone]
1+
#[deriving(Clone)]
22
struct S<T> {
33
foo: (),
44
bar: (),

branches/try/src/test/run-pass/deriving-clone-generic-tuple-struct.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#[deriving_clone]
1+
#[deriving(Clone)]
22
struct S<T>(T, ());
33

44
fn main() {}

branches/try/src/test/run-pass/deriving-clone-struct.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#[deriving_clone]
1+
#[deriving(Clone)]
22
struct S {
33
_int: int,
44
_i8: i8,

branches/try/src/test/run-pass/deriving-clone-tuple-struct.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#[deriving_clone]
1+
#[deriving(Clone)]
22
struct S((), ());
33

44
fn main() {}

branches/try/src/test/run-pass/deriving-enum-single-variant.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
type task_id = int;
22

3-
#[deriving_eq]
3+
#[deriving(Eq)]
44
pub enum Task {
55
TaskHandle(task_id)
66
}

branches/try/src/test/run-pass/deriving-via-extension-c-enum.rs

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

11-
#[deriving_eq]
11+
#[deriving(Eq)]
1212
enum Foo {
1313
Bar,
1414
Baz,

branches/try/src/test/run-pass/deriving-via-extension-enum.rs

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

11-
#[deriving_eq]
11+
#[deriving(Eq)]
1212
enum Foo {
1313
Bar(int, int),
1414
Baz(float, float)

branches/try/src/test/run-pass/deriving-via-extension-iter-bytes-enum.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
// option. This file may not be copied, modified, or distributed
1111
// except according to those terms.
1212

13-
#[deriving_iter_bytes]
13+
#[deriving(IterBytes)]
1414
enum Foo {
1515
Bar(int, char),
1616
Baz(char, int)
1717
}
1818

19-
#[deriving_iter_bytes]
19+
#[deriving(IterBytes)]
2020
enum A {
2121
B,
2222
C,

branches/try/src/test/run-pass/deriving-via-extension-iter-bytes-struct.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
// option. This file may not be copied, modified, or distributed
1111
// except according to those terms.
1212

13-
#[deriving_iter_bytes]
13+
#[deriving(IterBytes)]
1414
struct Foo {
1515
x: int,
1616
y: int,

branches/try/src/test/run-pass/deriving-via-extension-struct-empty.rs

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

11-
#[deriving_eq]
11+
#[deriving(Eq)]
1212
struct Foo;
1313

1414
pub fn main() {

branches/try/src/test/run-pass/deriving-via-extension-struct-like-enum-variant.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#[deriving_eq]
1+
#[deriving(Eq)]
22
enum S {
33
X { x: int, y: int },
44
Y

branches/try/src/test/run-pass/deriving-via-extension-struct-tuple.rs

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

11-
#[deriving_eq]
11+
#[deriving(Eq)]
1212
struct Foo(int, int, ~str);
1313

1414
pub fn main() {

branches/try/src/test/run-pass/deriving-via-extension-struct.rs

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

11-
#[deriving_eq]
11+
#[deriving(Eq)]
1212
struct Foo {
1313
x: int,
1414
y: int,

branches/try/src/test/run-pass/deriving-via-extension-type-params.rs

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

13-
#[deriving_eq]
14-
#[deriving_iter_bytes]
13+
#[deriving(Eq)]
14+
#[deriving(IterBytes)]
1515
struct Foo<T> {
1616
x: int,
1717
y: T,

branches/try/src/test/run-pass/extern-pass-TwoU64s-ref.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
// xfail-test --- broken on 32-bit ABIs! (#5347)
1414

15-
#[deriving_eq]
15+
#[deriving(Eq)]
1616
struct TwoU64s {
1717
one: u64, two: u64
1818
}

branches/try/src/test/run-pass/extern-pass-TwoU64s.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
// xfail-test --- broken on 32-bit ABIs! (#5347)
1515

16-
#[deriving_eq]
16+
#[deriving(Eq)]
1717
struct TwoU64s {
1818
one: u64, two: u64
1919
}

branches/try/src/test/run-pass/issue-2718.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ pub mod pipes {
2020
payload: Option<T>
2121
}
2222

23-
#[deriving_eq]
23+
#[deriving(Eq)]
2424
pub enum state {
2525
empty,
2626
full,

branches/try/src/test/run-pass/issue-3935.rs

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

11-
#[deriving_eq]
11+
#[deriving(Eq)]
1212
struct Bike {
1313
name: ~str,
1414
}

branches/try/src/test/run-pass/while-prelude-drop.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// except according to those terms.
1010

1111

12-
#[deriving_eq]
12+
#[deriving(Eq)]
1313
enum t { a, b(~str), }
1414

1515
fn make(i: int) -> t {

0 commit comments

Comments
 (0)