diff options
| author | bors <bors@rust-lang.org> | 2024-01-22 22:04:50 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-01-22 22:04:50 +0000 |
| commit | d6b151fc77e213bf637db0f12c1965ace3ffe255 (patch) | |
| tree | e420a6d4c1774e65195f08e30fe1d6c70df1b002 /tests/incremental | |
| parent | d5fd0997291ca0135401a39dff25c8a9c13b8961 (diff) | |
| parent | a787232abb960290eb62051e8236b8449113407c (diff) | |
| download | rust-d6b151fc77e213bf637db0f12c1965ace3ffe255.tar.gz rust-d6b151fc77e213bf637db0f12c1965ace3ffe255.zip | |
Auto merge of #120251 - matthiaskrgr:rollup-gttrw68, r=matthiaskrgr
Rollup of 8 pull requests
Successful merges:
- #119664 (Fix tty detection for msys2's `/dev/ptmx`)
- #120104 (never_patterns: Count `!` bindings as diverging)
- #120109 (Move cmath into `sys`)
- #120143 (Consolidate logic around resolving built-in coroutine trait impls)
- #120159 (Track `verbose` and `verbose_internals`)
- #120216 (Fix a `trimmed_def_paths` assertion failure.)
- #120220 (Document `Token{Stream,Tree}::Display` more thoroughly.)
- #120233 (Revert stabilization of trait_upcasting feature)
r? `@ghost`
`@rustbot` modify labels: rollup
Diffstat (limited to 'tests/incremental')
| -rw-r--r-- | tests/incremental/commandline-args.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/incremental/commandline-args.rs b/tests/incremental/commandline-args.rs index e17e6feae07..7a4c33d36e4 100644 --- a/tests/incremental/commandline-args.rs +++ b/tests/incremental/commandline-args.rs @@ -11,13 +11,13 @@ #![rustc_partition_codegened(module="commandline_args", cfg="rpass4")] // Between revisions 1 and 2, we are changing the debuginfo-level, which should -// invalidate the cache. Between revisions 2 and 3, we are adding `--verbose` +// invalidate the cache. Between revisions 2 and 3, we are adding `--diagnostic-width` // which should have no effect on the cache. Between revisions, we are adding // `--remap-path-prefix` which should invalidate the cache: //[rpass1] compile-flags: -C debuginfo=0 //[rpass2] compile-flags: -C debuginfo=2 -//[rpass3] compile-flags: -C debuginfo=2 --verbose -//[rpass4] compile-flags: -C debuginfo=2 --verbose --remap-path-prefix=/home/bors/rust=src +//[rpass3] compile-flags: -C debuginfo=2 --diagnostic-width=80 +//[rpass4] compile-flags: -C debuginfo=2 --diagnostic-width=80 --remap-path-prefix=/home/bors/r=src pub fn main() { // empty |
