Skip to content

Commit 077fc6f

Browse files
committed
---
yaml --- r: 50120 b: refs/heads/auto c: ec96096 h: refs/heads/master v: v3
1 parent e39b99f commit 077fc6f

26 files changed

+28
-28
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
1414
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
1515
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1616
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
17-
refs/heads/auto: 9966eaaba4d08dd9eb3cbbb1a92555f23d5f1a10
17+
refs/heads/auto: ec960963c15d833d33559e3adef9da41d30399e4
1818
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167

branches/auto/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/auto/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/auto/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/auto/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/auto/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/auto/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/auto/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/auto/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/auto/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/auto/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/auto/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/auto/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/auto/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/auto/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/auto/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/auto/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/auto/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/auto/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/auto/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/auto/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/auto/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/auto/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/auto/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/auto/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/auto/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)