Skip to content

Commit 7765993

Browse files
committed
auto merge of #19124 : Kintaro/rust/remove_test_struct_variants, r=bstrie
Removed usage of struct_variant feature from all tests.
2 parents 8296808 + f950e3c commit 7765993

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+6
-76
lines changed

src/test/auxiliary/issue-8044.rs

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

11-
#![feature(struct_variant)]
12-
1311
pub struct BTree<V> {
1412
pub node: TreeItem<V>,
1513
}

src/test/auxiliary/namespaced_enum_emulate_flat.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
10-
#![feature(globs, struct_variant)]
10+
#![feature(globs)]
1111

1212
pub use Foo::*;
1313

src/test/auxiliary/namespaced_enums.rs

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
10-
#![feature(struct_variant)]
1110

1211
pub enum Foo {
1312
A,

src/test/auxiliary/struct_variant_privacy.rs

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
10-
#![feature(struct_variant)]
1110

1211
enum Bar {
1312
Baz { a: int }

src/test/auxiliary/struct_variant_xc_aux.rs

-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
#![crate_name="struct_variant_xc_aux"]
1212
#![crate_type = "lib"]
1313

14-
#![feature(struct_variant)]
15-
1614
pub enum Enum {
1715
Variant(u8),
1816
StructVariant { arg: u8 }

src/test/debuginfo/borrowed-enum.rs

-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
// lldb-check:[...]$2 = TheOnlyCase(4820353753753434)
4141

4242
#![allow(unused_variables)]
43-
#![feature(struct_variant)]
4443

4544
// The first element is to ensure proper alignment, irrespective of the machines word size. Since
4645
// the size of the discriminant value is machine dependent, this has be taken into account when

src/test/debuginfo/by-value-non-immediate-argument.rs

-2
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,6 @@
7171
// lldb-check:[...]$6 = Case1 { x: 0, y: 8970181431921507452 }
7272
// lldb-command:continue
7373

74-
#![feature(struct_variant)]
75-
7674
#[deriving(Clone)]
7775
struct Struct {
7876
a: int,

src/test/debuginfo/gdb-pretty-struct-and-enums.rs

-2
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,6 @@
6464
// gdb-command: print nested_variant2
6565
// gdb-check:$14 = NestedVariant2 = {abc = NestedStruct = {regular_struct = RegularStruct = {the_first_field = 117, the_second_field = 118.5, the_third_field = false, the_fourth_field = "NestedStructString10"}, tuple_struct = TupleStruct = {119.5, 120}, empty_struct = EmptyStruct, c_style_enum = CStyleEnumVar3, mixed_enum = MixedEnumStructVar = {field1 = 121.5, field2 = -122}}}
6666

67-
#![feature(struct_variant)]
68-
6967
use self::CStyleEnum::{CStyleEnumVar1, CStyleEnumVar2, CStyleEnumVar3};
7068
use self::MixedEnum::{MixedEnumCStyleVar, MixedEnumTupleVar, MixedEnumStructVar};
7169
use self::NestedEnum::{NestedVariant1, NestedVariant2};

src/test/debuginfo/generic-static-method-on-struct-and-enum.rs

-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@
3131
// gdb-check:$5 = 5
3232
// gdb-command:continue
3333

34-
#![feature(struct_variant)]
35-
3634
struct Struct {
3735
x: int
3836
}

src/test/debuginfo/generic-struct-style-enum.rs

-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@
2929
// gdb-command:print univariant
3030
// gdb-check:$4 = {{a = -1}}
3131

32-
#![feature(struct_variant)]
33-
3432
use self::Regular::{Case1, Case2, Case3};
3533
use self::Univariant::TheOnlyCase;
3634

src/test/debuginfo/method-on-enum.rs

-2
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,6 @@
113113
// lldb-check:[...]$14 = -10
114114
// lldb-command:continue
115115

116-
#![feature(struct_variant)]
117-
118116
enum Enum {
119117
Variant1 { x: u16, y: u16 },
120118
Variant2 (u32)

src/test/debuginfo/option-like-enum.rs

-2
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,6 @@
6262
// lldb-check:[...]$5 = Void
6363

6464

65-
#![feature(struct_variant)]
66-
6765
// If a struct has exactly two variants, one of them is empty, and the other one
6866
// contains a non-nullable pointer, then this value is used as the discriminator.
6967
// The test cases in this file make sure that something readable is generated for

src/test/debuginfo/recursive-struct.rs

-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@
6969
// gdb-command:continue
7070

7171
#![allow(unused_variables)]
72-
#![feature(struct_variant)]
7372

7473
use self::Opt::{Empty, Val};
7574

src/test/debuginfo/static-method-on-struct-and-enum.rs

-2
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,6 @@
5454
// lldb-check:[...]$4 = 5
5555
// lldb-command:continue
5656

57-
#![feature(struct_variant)]
58-
5957
struct Struct {
6058
x: int
6159
}

src/test/debuginfo/struct-style-enum.rs

-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@
4949
// lldb-check:[...]$3 = TheOnlyCase { a: -1 }
5050

5151
#![allow(unused_variables)]
52-
#![feature(struct_variant)]
5352

5453
use self::Regular::{Case1, Case2, Case3};
5554
use self::Univariant::TheOnlyCase;

src/test/debuginfo/unique-enum.rs

-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@
4242
// lldb-check:[...]$2 = TheOnlyCase(123234)
4343

4444
#![allow(unused_variables)]
45-
#![feature(struct_variant)]
4645

4746
// The first element is to ensure proper alignment, irrespective of the machines word size. Since
4847
// the size of the discriminant value is machine dependent, this has be taken into account when

src/test/run-pass/const-enum-structlike.rs

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

11-
#![feature(struct_variant)]
12-
1311
enum E {
1412
S0 { s: String },
1513
S1 { u: uint }

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

-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
// no-pretty-expanded FIXME #15189
1212

13-
#![feature(struct_variant)]
14-
1513
#[deriving(PartialEq, Eq, PartialOrd, Ord)]
1614
enum ES<T> {
1715
ES1 { x: T },

src/test/run-pass/deriving-encodable-decodable.rs

-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
// ignore-test FIXME(#5121)
1515

16-
#![feature(struct_variant)]
17-
1816
extern crate rand;
1917
extern crate rbml;
2018
extern crate serialize;

src/test/run-pass/deriving-rand.rs

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

11-
#![feature(struct_variant)]
12-
1311
use std::rand;
1412

1513
#[deriving(Rand)]

src/test/run-pass/deriving-show-2.rs

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

11-
#![feature(struct_variant)]
12-
1311
use std::fmt;
1412

1513
#[deriving(Show)]

src/test/run-pass/deriving-show.rs

+1-1
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-
#![feature(struct_variant, macro_rules)]
11+
#![feature(macro_rules)]
1212

1313
#[deriving(Show)]
1414
struct Unit;

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

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

11-
#![feature(struct_variant)]
12-
1311
#[deriving(PartialEq, Show)]
1412
enum S {
1513
X { x: int, y: int },

src/test/run-pass/drop-trait-enum.rs

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

11-
#![feature(struct_variant)]
12-
1311
use std::task;
1412

1513
#[deriving(PartialEq, Show)]

src/test/run-pass/enum-variants.rs

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
#![allow(dead_assignment)]
1212
#![allow(unused_variable)]
13-
#![feature(struct_variant)]
1413

1514
enum Animal {
1615
Dog (String, f64),

src/test/run-pass/issue-11085.rs

-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
// compile-flags: --cfg foo
1212

13-
#![feature(struct_variant)]
14-
1513
struct Foo {
1614
#[cfg(fail)]
1715
bar: baz,

src/test/run-pass/issue-11577.rs

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

11-
#![feature(struct_variant)]
12-
1311
// Destructuring struct variants would ICE where regular structs wouldn't
1412

1513
enum Foo {

src/test/run-pass/issue-14837.rs

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

11-
#![feature(struct_variant)]
12-
1311
#[deny(dead_code)]
1412
pub enum Foo {
1513
Bar {

src/test/run-pass/issue-5530.rs

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

11-
#![feature(struct_variant)]
12-
1311
enum Enum {
1412
Foo { foo: uint },
1513
Bar { bar: uint }

src/test/run-pass/issue-8351-1.rs

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

11-
#![feature(struct_variant)]
12-
1311
enum E {
1412
Foo{f: int},
1513
Bar,

src/test/run-pass/issue-8351-2.rs

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

11-
#![feature(struct_variant)]
12-
1311
enum E {
1412
Foo{f: int, b: bool},
1513
Bar,

src/test/run-pass/match-arm-statics.rs

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

11-
#![feature(struct_variant)]
12-
1311
struct NewBool(bool);
1412

1513
enum Direction {

src/test/run-pass/match-enum-struct-0.rs

-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
// regression test for issue #5625
1212

13-
#![feature(struct_variant)]
14-
1513
enum E {
1614
Foo{f : int},
1715
Bar

src/test/run-pass/match-enum-struct-1.rs

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

11-
#![feature(struct_variant)]
12-
1311
enum E {
1412
Foo{f : int},
1513
Bar

src/test/run-pass/match-in-macro.rs

+1-1
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-
#![feature(macro_rules, struct_variant)]
11+
#![feature(macro_rules)]
1212

1313
enum Foo {
1414
B { b1: int, bb1: int},

src/test/run-pass/namespaced-enum-emulate-flat-xc.rs

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
// except according to those terms.
1010

1111
// aux-build:namespaced_enum_emulate_flat.rs
12-
#![feature(struct_variant)]
1312

1413
extern crate namespaced_enum_emulate_flat;
1514

src/test/run-pass/namespaced-enum-emulate-flat.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
10-
#![feature(globs, struct_variant)]
10+
#![feature(globs)]
1111

1212
pub use Foo::*;
1313
use nest::{Bar, D, E, F};

src/test/run-pass/namespaced-enum-glob-import-xcrate.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// except according to those terms.
1010

1111
// aux-build:namespaced_enums.rs
12-
#![feature(globs, struct_variant)]
12+
#![feature(globs)]
1313

1414
extern crate namespaced_enums;
1515

src/test/run-pass/namespaced-enum-glob-import.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
10-
#![feature(globs, struct_variant)]
10+
#![feature(globs)]
1111

1212
mod m2 {
1313
pub enum Foo {

src/test/run-pass/namespaced-enums-xcrate.rs

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
// except according to those terms.
1010

1111
// aux-build:namespaced_enums.rs
12-
#![feature(struct_variant)]
1312

1413
extern crate namespaced_enums;
1514

src/test/run-pass/namespaced-enums.rs

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
10-
#![feature(struct_variant)]
1110

1211
enum Foo {
1312
A,

src/test/run-pass/struct-like-variant-construct.rs

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

11-
#![feature(struct_variant)]
12-
1311
enum Foo {
1412
Bar {
1513
a: int,

src/test/run-pass/struct-like-variant-match.rs

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

11-
#![feature(struct_variant)]
12-
1311
enum Foo {
1412
Bar {
1513
x: int,

src/test/run-pass/struct-variant-field-visibility.rs

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

11-
#![feature(struct_variant)]
12-
1311
mod foo {
1412
pub enum Foo {
1513
Bar { a: int }

src/test/run-pass/unsized2.rs

-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
// except according to those terms.
1010
//
1111
// ignore-lexer-test FIXME #15879
12-
#![feature(struct_variant)]
13-
1412

1513
// Test sized-ness checking in substitution.
1614

0 commit comments

Comments
 (0)