Skip to content

Commit 33a2c24

Browse files
committed
Auto merge of rust-lang#113621 - ehuss:ignore-clippy-tests, r=Nilstrieb
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 rust-lang#113585
2 parents 1e6db34 + fb5efd7 commit 33a2c24

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

Diff for: src/tools/clippy/tests/ui/empty_line_after_doc_comments.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
//@aux-build:proc_macro_attr.rs:proc-macro
2+
// Flaky test, see https://github.com/rust-lang/rust/issues/113585.
3+
//@ignore-32bit
4+
//@ignore-64bit
25
#![warn(clippy::empty_line_after_doc_comments)]
36
#![allow(clippy::assertions_on_constants)]
47
#![feature(custom_inner_attributes)]

Diff for: src/tools/clippy/tests/ui/empty_line_after_outer_attribute.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
//@aux-build:proc_macro_attr.rs:proc-macro
2+
// Flaky test, see https://github.com/rust-lang/rust/issues/113585.
3+
//@ignore-32bit
4+
//@ignore-64bit
25
#![warn(clippy::empty_line_after_outer_attr)]
36
#![allow(clippy::assertions_on_constants)]
47
#![feature(custom_inner_attributes)]

Diff for: src/tools/clippy/tests/ui/needless_arbitrary_self_type_unfixable.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
//@aux-build:proc_macro_attr.rs:proc-macro
2+
// Flaky test, see https://github.com/rust-lang/rust/issues/113585.
3+
//@ignore-32bit
4+
//@ignore-64bit
25

36
#![warn(clippy::needless_arbitrary_self_type)]
47

0 commit comments

Comments
 (0)