Skip to content

Commit 32e17b5

Browse files
committed
tests: prefer edition: directives to compile-flags:--edition.
1 parent 2c44026 commit 32e17b5

21 files changed

+21
-21
lines changed

src/test/run-pass/macro-at-most-once-rep.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
//
1919
// This test focuses on non-error cases and making sure the correct number of repetitions happen.
2020

21-
// compile-flags: --edition=2018
21+
// edition:2018
2222

2323
#![feature(macro_at_most_once_rep)]
2424

src/test/ui-fulldeps/rust-2018/suggestions-not-always-applicable.fixed

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

1111
// aux-build:suggestions-not-always-applicable.rs
12-
// compile-flags: --edition 2015
12+
// edition:2015
1313
// run-rustfix
1414
// rustfix-only-machine-applicable
1515
// compile-pass

src/test/ui-fulldeps/rust-2018/suggestions-not-always-applicable.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:suggestions-not-always-applicable.rs
12-
// compile-flags: --edition 2015
12+
// edition:2015
1313
// run-rustfix
1414
// rustfix-only-machine-applicable
1515
// compile-pass

src/test/ui-fulldeps/unnecessary-extern-crate.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-
// compile-flags: --edition 2018
11+
// edition:2018
1212

1313
#![deny(unused_extern_crates)]
1414
#![feature(alloc, test, libc)]

src/test/ui/borrowck/borrowck-feature-nll-overrides-migrate.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
// revisions: zflag edition
2222
// [zflag]compile-flags: -Z borrowck=migrate
23-
// [edition]compile-flags: --edition 2018
23+
// [edition]edition:2018
2424

2525
#![feature(nll)]
2626

src/test/ui/borrowck/borrowck-migrate-to-nll.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
// revisions: zflag edition
2525
//[zflag]compile-flags: -Z borrowck=migrate
26-
//[edition]compile-flags: --edition 2018
26+
//[edition]edition:2018
2727
//[zflag] run-pass
2828
//[edition] run-pass
2929

src/test/ui/borrowck/issue-52967-edition-2018-needs-two-phase-borrows.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
// revisions: ast zflags edition
1616
//[zflags]compile-flags: -Z borrowck=migrate -Z two-phase-borrows
17-
//[edition]compile-flags: --edition 2018
17+
//[edition]edition:2018
1818

1919
// run-pass
2020

src/test/ui/editions/edition-extern-crate-allowed.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:edition-extern-crate-allowed.rs
12-
// compile-flags: --edition 2015
12+
// edition:2015
1313
// compile-pass
1414

1515
#![warn(rust_2018_idioms)]

src/test/ui/in-band-lifetimes/elided-lifetimes.fixed

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

1111
// run-rustfix
12-
// compile-flags: --edition 2018
12+
// edition:2018
1313

1414
#![allow(unused)]
1515
#![deny(elided_lifetimes_in_paths)]

src/test/ui/in-band-lifetimes/elided-lifetimes.rs

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

1111
// run-rustfix
12-
// compile-flags: --edition 2018
12+
// edition:2018
1313

1414
#![allow(unused)]
1515
#![deny(elided_lifetimes_in_paths)]

src/test/ui/macros/macro-at-most-once-rep-2015-ques-rep-feature-flag.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// with the feature flag.
1313

1414
// gate-test-macro_at_most_once_rep
15-
// compile-flags: --edition=2015
15+
// edition:2015
1616

1717
#![feature(macro_at_most_once_rep)]
1818

src/test/ui/macros/macro-at-most-once-rep-2015-ques-rep.rs

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

1111
// Test behavior of `?` macro _kleene op_ under the 2015 edition. Namely, it doesn't exist.
1212

13-
// compile-flags: --edition=2015
13+
// edition:2015
1414

1515
macro_rules! bar {
1616
($(a)?) => {} //~ERROR expected `*` or `+`

src/test/ui/macros/macro-at-most-once-rep-2015-ques-sep.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// Test behavior of `?` macro _separator_ under the 2015 edition. Namely, `?` can be used as a
1212
// separator, but you get a migration warning for the edition.
1313

14-
// compile-flags: --edition=2015
14+
// edition:2015
1515
// compile-pass
1616

1717
#![warn(rust_2018_compatibility)]

src/test/ui/macros/macro-at-most-once-rep-2018-feature-gate.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// Feature gate test for macro_at_most_once_rep under 2018 edition.
1212

1313
// gate-test-macro_at_most_once_rep
14-
// compile-flags: --edition=2018
14+
// edition:2018
1515

1616
macro_rules! foo {
1717
($(a)?) => {}

src/test/ui/macros/macro-at-most-once-rep-2018.rs

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

1111
// Tests that `?` is a Kleene op and not a macro separator in the 2018 edition.
1212

13-
// compile-flags: --edition=2018
13+
// edition:2018
1414

1515
#![feature(macro_at_most_once_rep)]
1616

src/test/ui/removing-extern-crate.fixed

+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-
// compile-flags: --edition 2018
11+
// edition:2018
1212
// aux-build:removing-extern-crate.rs
1313
// run-rustfix
1414
// compile-pass

src/test/ui/removing-extern-crate.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-
// compile-flags: --edition 2018
11+
// edition:2018
1212
// aux-build:removing-extern-crate.rs
1313
// run-rustfix
1414
// compile-pass

src/test/ui/rust-2018/async-ident-allowed.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-
// compile-flags: --edition 2015
11+
// edition:2015
1212

1313
#![deny(rust_2018_compatibility)]
1414

src/test/ui/rust-2018/extern-crate-idiomatic-in-2018.fixed

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

1111
// aux-build:edition-lint-paths.rs
1212
// run-rustfix
13-
// compile-flags:--edition 2018
13+
// edition:2018
1414

1515
// The "normal case". Ideally we would remove the `extern crate` here,
1616
// but we don't.

src/test/ui/rust-2018/extern-crate-idiomatic-in-2018.rs

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

1111
// aux-build:edition-lint-paths.rs
1212
// run-rustfix
13-
// compile-flags:--edition 2018
13+
// edition:2018
1414

1515
// The "normal case". Ideally we would remove the `extern crate` here,
1616
// but we don't.

src/test/ui/rust-2018/issue-52202-use-suggestions.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-
// compile-flags: --edition 2018
11+
// edition:2018
1212

1313
// The local `use` suggestion should start with `crate::` (but the
1414
// standard-library suggestions should not, obviously).

0 commit comments

Comments
 (0)