Skip to content

Commit

Permalink
Auto merge of #113621 - ehuss:ignore-clippy-tests, r=Nilstrieb
Browse files Browse the repository at this point in the history
Ignore flaky clippy tests.

These tests are frequently failing due to an issue in ui_test. ui_test doesn't appear to have a blanket ignore instruction that I could find, so I just approximated it with ignoring both 32 and 64 bit.

Fixes #113585
  • Loading branch information
bors committed Jul 12, 2023
2 parents 1e6db34 fb5efd7 commit 33a2c24
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/tools/clippy/tests/ui/empty_line_after_doc_comments.rs
Original file line number Diff line number Diff line change
@@ -1,4 1,7 @@
//@aux-build:proc_macro_attr.rs:proc-macro
// Flaky test, see https://github.com/rust-lang/rust/issues/113585.
//@ignore-32bit
//@ignore-64bit
#![warn(clippy::empty_line_after_doc_comments)]
#![allow(clippy::assertions_on_constants)]
#![feature(custom_inner_attributes)]
Expand Down
3 changes: 3 additions & 0 deletions src/tools/clippy/tests/ui/empty_line_after_outer_attribute.rs
Original file line number Diff line number Diff line change
@@ -1,4 1,7 @@
//@aux-build:proc_macro_attr.rs:proc-macro
// Flaky test, see https://github.com/rust-lang/rust/issues/113585.
//@ignore-32bit
//@ignore-64bit
#![warn(clippy::empty_line_after_outer_attr)]
#![allow(clippy::assertions_on_constants)]
#![feature(custom_inner_attributes)]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 1,7 @@
//@aux-build:proc_macro_attr.rs:proc-macro
// Flaky test, see https://github.com/rust-lang/rust/issues/113585.
//@ignore-32bit
//@ignore-64bit

#![warn(clippy::needless_arbitrary_self_type)]

Expand Down

0 comments on commit 33a2c24

Please sign in to comment.