You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: crates/cargo-test-support/src/compare.rs
+143-1
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,11 @@
16
16
//! `[WARNING]`) to match cargo's "status" output and allows you to ignore
17
17
//! the alignment. See the source of `substitute_macros` for a complete list
18
18
//! of substitutions.
19
+
//! - `[DIRTY-MSVC]` (only when the line starts with it) would be replaced by
20
+
//! `[DIRTY]` when `cfg(target_env = "msvc")` or the line will be ignored otherwise.
21
+
//! Tests that work around [issue 7358](https://github.com/rust-lang/cargo/issues/7358)
22
+
//! can use this to avoid duplicating the `with_stderr` call like:
0 commit comments