mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-28 11:20:36 +00:00

Add reasons to all ignored tests. This adds a reason string to all `#[ignore]` attributes. This will be displayed when running the test (since 1.61), which can help quickly see and identify why tests are being ignored. It looks roughly like: ``` test basic ... ignored, requires nightly, CARGO_RUN_BUILD_STD_TESTS must be set test build::simple_terminal_width ... ignored, --diagnostic-width is stabilized in 1.64 test check_cfg::features_with_cargo_check ... ignored, --check-cfg is unstable test plugins::panic_abort_plugins ... ignored, requires rustc_private ```