Skip to content

Commit 575710f

Browse files
committed
auto merge of #15106 : Sawyer47/rust/rm-duplicated-tests, r=alexcrichton
Even if they used to test different things in the past, they are now identical to other files. Closes #11496
2 parents d77cb22 + 37b8ce0 commit 575710f

File tree

6 files changed

+4
-81
lines changed

6 files changed

+4
-81
lines changed

src/test/compile-fail/issue-2123.rs

-15
This file was deleted.

src/test/compile-fail/issue-3993-3.rs

-20
This file was deleted.

src/test/compile-fail/type-mismatch.rs

-18
This file was deleted.

src/test/run-fail/binop-fail-2.rs

-13
This file was deleted.

src/test/run-pass/deriving-meta-multiple.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@
1111

1212
use std::hash::hash;
1313

14-
#[deriving(PartialEq, Clone, Hash)]
14+
// testing mulptiple separate deriving attributes
15+
#[deriving(PartialEq)]
16+
#[deriving(Clone)]
17+
#[deriving(Hash)]
1518
struct Foo {
1619
bar: uint,
1720
baz: int

src/test/run-pass/unique-decl-move-temp.rs

-14
This file was deleted.

0 commit comments

Comments
 (0)