mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-01 15:50:05 +03:00
1faa95d289
`early_warn` is called Skip `colored-session-opt-error.rs` on Windows hosts This is very cursed as to why it fails on Windows CI specifically: - The test emits a *warning*. - *Warnings*, and only warnings *specifically*, have a different 256-color between Windows and non-Windows hosts (other levels `set_intense(true)` unconditionally): https://github.com/rust-lang/rust/blob/e69c7306e2be08939d95f14229e3f96566fb206c/compiler/rustc_errors/src/lib.rs#L1792-L1794 Therefore, I added `// ignore-windows` test header to skip this test on Windows (it's sufficient to test color is enabled on at least one non-Windows host).
4 lines
148 B
Rust
4 lines
148 B
Rust
// compile-flags: --error-format=human --cfg a{b}
|
|
// error-pattern: invalid `--cfg` argument: `a{b}` (expected `key` or `key="value"`)
|
|
fn main() {}
|