Skip to content

Commit b389207

Browse files
committed
Rollup merge of #24218 - lstat:remove-ignore-tidy, r=alexcrichton
This is a really minor issue. I noticed some tests no longer need the ignore tidy comment directive. A quick grep turned up the following files: src/test/compile-fail/bad-mid-path-type-params.rs src/test/compile-fail/bad-sized.rs src/test/compile-fail/coherence-default-trait-impl.rs src/test/compile-fail/coherence-orphan.rs src/test/compile-fail/issue-8767.rs src/test/compile-fail/lint-stability.rs src/test/compile-fail/lint-uppercase-variables.rs src/test/compile-fail/typeck-default-trait-impl-outside-crate.rs src/test/compile-fail/use-after-move-implicity-coerced-object.rs src/test/debuginfo/gdb-pretty-std.rs It didn't seem like it was worth opening an issue for this, but if that is not the case (i.e. it is required), I'll open one up. Thanks!
2 parents 1a6e100 + 2a9e101 commit b389207

10 files changed

+0
-17
lines changed

src/test/compile-fail/bad-mid-path-type-params.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-
// ignore-tidy-linelength
12-
1311
struct S<T> {
1412
contents: T,
1513
}

src/test/compile-fail/bad-sized.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-
// ignore-tidy-linelength
12-
1311
use std::cell::RefCell;
1412

1513
trait Trait : ::std::marker::MarkerTrait {}

src/test/compile-fail/coherence-default-trait-impl.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-
// ignore-tidy-linelength
12-
1311
#![feature(optin_builtin_traits)]
1412

1513
use std::marker::MarkerTrait;

src/test/compile-fail/coherence-orphan.rs

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

11-
// ignore-tidy-linelength
1211
// aux-build:coherence_orphan_lib.rs
1312

1413
#![feature(optin_builtin_traits)]

src/test/compile-fail/issue-8767.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-
// ignore-tidy-linelength
12-
1311
impl B { //~ ERROR use of undeclared type name `B`
1412
}
1513

src/test/compile-fail/lint-stability.rs

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
// aux-build:inherited_stability.rs
1313
// aux-build:stability_cfg1.rs
1414
// aux-build:stability_cfg2.rs
15-
// ignore-tidy-linelength
1615

1716
#![deny(deprecated)]
1817
#![allow(dead_code)]

src/test/compile-fail/lint-uppercase-variables.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-
// ignore-tidy-linelength
12-
1311
#![allow(dead_code)]
1412
#![deny(non_snake_case)]
1513

src/test/compile-fail/typeck-default-trait-impl-outside-crate.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-
// ignore-tidy-linelength
12-
1311
#![feature(optin_builtin_traits)]
1412

1513
impl Copy for .. {}

src/test/compile-fail/use-after-move-implicity-coerced-object.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-
// ignore-tidy-linelength
12-
1311
#![feature(box_syntax)]
1412

1513
use std::fmt;

src/test/debuginfo/gdb-pretty-std.rs

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

1111
// ignore-windows failing on win32 bot
1212
// ignore-freebsd: gdb package too new
13-
// ignore-tidy-linelength
1413
// ignore-lldb
1514
// ignore-android: FIXME(#10381)
1615
// compile-flags:-g

0 commit comments

Comments
 (0)