Skip to content

Conversation

matthiaskrgr
Copy link
Member

@matthiaskrgr matthiaskrgr commented Sep 16, 2025

Successful merges:

r? @ghost
@rustbot modify labels: rollup

Create a similar rollup

jyn514 and others added 10 commits September 15, 2025 10:48
This commit can be replicated by running
`cargo update -p rustfix --precise 0.8.7 && x test ui --bless`.

---

The reasons this affects UI tests is as follows:
- The UI test suite runs rustc with
    `-Z deduplicate-diagnostics=no --error-format=json`,
  which means that rustc emits multiple errors containing identical
  suggestions. That caused the weird-looking code that had multiple `X: Copy` suggestions.
- Those suggestions are interpreted not by rustc itself, but by the
  `rustfix` library, maintained by cargo but published as a separate
  crates.io library and used by compiletest.
- Sometime between rustfix 0.8.1 and 0.8.7 (probably in cargo 14747, but
  it's hard to tell because rustfix's versioning doesn't match cargo's),
  rustfix got smarter and stopped applying duplicate suggestions.

Update rustfix to match cargo's behavior. Ideally, we would always share
a version of rustfix between cargo and rustc (perhaps with a path
dependency?), to make sure we are testing the behavior we ship. But for
now, just manually update it to match.

Note that the latest version of rustfix published to crates.io is 0.9.1,
not 0.8.7. But 0.9.1 is not the version used in cargo, which is 0.9.3.
Rather than trying to match versions exactly, I just updated rustfix to
the latest in the 0.8 branch.
…, r=BoxyUwU

Display ?Sized, const, and lifetime parameters in trait item suggestions across a crate boundary

context: rust-lang#145929

This fixes the MetaSized issue and adds const generics and early bound lifetimes. Late bound lifetimes are harder because they aren't returned by `generics_of`. I'm going to look into it, but there's no guarantee I'll be successful.

Fixes rust-lang#146404.

r? `@BoxyUwu`
…rage, r=Noratrieb

Improve `core::ascii` coverage

This PR improves the `core::ascii` coverage by adding a new test to `coretests`

r? `@workingjubilee`
Bump rustfix 0.8.1 -> 0.8.7

This commit can be replicated by running `cargo update -p rustfix --precise 0.8.7 && x test ui --bless`.

---

The reasons this affects UI tests is as follows:
- The UI test suite runs rustc with `-Z deduplicate-diagnostics=no --error-format=json`, which means that rustc emits multiple errors containing identical suggestions. That caused the weird-looking code that had multiple `X: Copy` suggestions.
- Those suggestions are interpreted not by rustc itself, but by the `rustfix` library, maintained by cargo but published as a separate crates.io library and used by compiletest.
- Sometime between rustfix 0.8.1 and 0.8.7 (probably in rust-lang/cargo#14747, but it's hard to tell because rustfix's versioning doesn't match cargo's), rustfix got smarter and stopped applying duplicate suggestions.

Update rustfix to match cargo's behavior. Ideally, we would always share a version of rustfix between cargo and rustc (perhaps with a path dependency?), to make sure we are testing the behavior we ship. But for now, just manually update it to match.

Note that the latest version of rustfix published to crates.io is 0.9.1, not 0.8.7. But 0.9.1 is not the version used in cargo, which is 0.9.3. Rather than trying to match versions exactly, I just updated rustfix to the latest in the 0.8 branch.
…section-diagnostic, r=Kobzol

bootstrap: emit hint if a config key is used in the wrong section

based on discussion on rust-lang#146591

now, if the user puts `build.download-rustc` in `bootstrap.toml`, they'll get a diagnostic:
``hint: try moving `download-rustc` to the `rust` section``

and if they nest things too much (`rust.rust.download-rustc`):
``hint: section name `rust` used as a key within a section``

if they specify a top-level key within a section (`rust.profile`):
``hint: try using `profile` as a top level key``

r? `@Kobzol`
…tions, r=kobzol

Do not run ui test if options specific to LLVM are used when another codegen backend is used

Based on errors in rust-lang#146414, some tests with LLVM-specific options are run when another codegen is actually the one used.

This PR ignores these tests in such cases now to prevent this situation.

r? `@kobzol`
@rustbot rustbot added A-compiletest Area: The compiletest test runner A-testsuite Area: The testsuite used to check the correctness of rustc S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue. rollup A PR which is a rollup labels Sep 16, 2025
@matthiaskrgr
Copy link
Member Author

@bors r+ rollup=never p=5

@bors
Copy link
Collaborator

bors commented Sep 16, 2025

📌 Commit cf03552 has been approved by matthiaskrgr

It is now in the queue for this repository.

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Sep 16, 2025
@bors
Copy link
Collaborator

bors commented Sep 16, 2025

⌛ Testing commit cf03552 with merge 3f1552a...

@bors
Copy link
Collaborator

bors commented Sep 17, 2025

☀️ Test successful - checks-actions
Approved by: matthiaskrgr
Pushing 3f1552a to master...

@bors bors added the merged-by-bors This PR was explicitly merged by bors. label Sep 17, 2025
@bors bors merged commit 3f1552a into rust-lang:master Sep 17, 2025
11 checks passed
@rustbot rustbot added this to the 1.92.0 milestone Sep 17, 2025
@rust-timer
Copy link
Collaborator

📌 Perf builds for each rolled up PR:

PR# Message Perf Build Sha
#146442 Display ?Sized, const, and lifetime parameters in trait ite… ea104fab6612751c20f5e880c0615d0794e55d45 (link)
#146474 Improve core::ascii coverage ffea946a62da34c72166b49b4321dcf4b1ab4a71 (link)
#146605 Bump rustfix 0.8.1 -> 0.8.7 763a3e90afe35356e6a97895f060189c4e39f88a (link)
#146611 bootstrap: emit hint if a config key is used in the wrong s… ce87ef1de163bdbd722674ff43f41140c3058377 (link)
#146618 Do not run ui test if options specific to LLVM are used whe… e25cba0715daee6fe46d2abd6f2b343d561a2f33 (link)

previous master: a9d0a6f155

In the case of a perf regression, run the following command for each PR you suspect might be the cause: @rust-timer build $SHA

Copy link
Contributor

What is this? This is an experimental post-merge analysis report that shows differences in test outcomes between the merged PR and its parent PR.

Comparing a9d0a6f (parent) -> 3f1552a (this PR)

Test differences

Show 79 test diffs

Stage 1

  • [codegen] tests/codegen-llvm/autodiff/autodiffv2.rs: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [codegen] tests/codegen-llvm/autodiff/batched.rs: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [codegen] tests/codegen-llvm/autodiff/generic.rs: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [codegen] tests/codegen-llvm/autodiff/identical_fnc.rs: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [codegen] tests/codegen-llvm/autodiff/scalar.rs: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [codegen] tests/codegen-llvm/autodiff/sret.rs: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [codegen] tests/codegen-llvm/autodiff/trait.rs: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [codegen] tests/codegen-llvm/gpu_offload/gpu_host.rs: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [pretty] tests/pretty/autodiff/autodiff_forward.rs: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [pretty] tests/pretty/autodiff/autodiff_reverse.rs: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [pretty] tests/pretty/autodiff/inherent_impl.rs: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/array: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/array3d: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/box: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/const_pointer: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/f32: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/f64: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/i128: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/i16: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/i32: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/i8: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/isize: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/mut_pointer: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/mut_ref: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/ref: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/struct: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/u128: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/u16: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/u32: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/u8: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/union: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/usize: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/vec: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [ui] tests/ui/autodiff/autodiff_illegal.rs: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [ui] tests/ui/autodiff/macro_hygiene.rs: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [ui] tests/ui/feature-gates/feature-gate-autodiff-use.rs#has_support: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • [ui] tests/ui/feature-gates/feature-gate-autodiff.rs#has_support: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J2)
  • ascii::test_invalid_u8: [missing] -> pass (J7)

Stage 2

  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/array: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J0)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/array3d: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J0)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/box: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J0)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/const_pointer: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J0)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/f32: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J0)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/f64: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J0)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/i128: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J0)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/i16: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J0)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/i32: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J0)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/i8: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J0)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/isize: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J0)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/mut_pointer: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J0)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/mut_ref: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J0)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/ref: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J0)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/struct: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J0)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/u128: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J0)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/u16: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J0)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/u32: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J0)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/u8: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J0)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/union: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J0)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/usize: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J0)
  • [run-make] tests/run-make/autodiff/type-trees/type-analysis/vec: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J0)
  • [codegen] tests/codegen-llvm/autodiff/autodiffv2.rs: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J1)
  • [codegen] tests/codegen-llvm/autodiff/batched.rs: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J1)
  • [codegen] tests/codegen-llvm/autodiff/generic.rs: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J1)
  • [codegen] tests/codegen-llvm/autodiff/identical_fnc.rs: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J1)
  • [codegen] tests/codegen-llvm/autodiff/scalar.rs: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J1)
  • [codegen] tests/codegen-llvm/autodiff/sret.rs: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J1)
  • [codegen] tests/codegen-llvm/autodiff/trait.rs: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J1)
  • [codegen] tests/codegen-llvm/gpu_offload/gpu_host.rs: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J1)
  • ascii::test_invalid_u8: [missing] -> pass (J3)
  • [pretty] tests/pretty/autodiff/autodiff_forward.rs: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J4)
  • [pretty] tests/pretty/autodiff/autodiff_reverse.rs: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J4)
  • [pretty] tests/pretty/autodiff/inherent_impl.rs: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J4)
  • [ui] tests/ui/autodiff/autodiff_illegal.rs: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J5)
  • [ui] tests/ui/autodiff/macro_hygiene.rs: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J5)
  • [ui] tests/ui/feature-gates/feature-gate-autodiff-use.rs#has_support: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J5)
  • [ui] tests/ui/feature-gates/feature-gate-autodiff.rs#has_support: ignore (ignored when LLVM Enzyme is disabled) -> ignore (ignored when LLVM Enzyme is disabled or LLVM is not the default codegen backend) (J5)
  • [run-make] tests/run-make/compressed-debuginfo-zstd: ignore (ignored if LLVM wasn't build with zstd for ELF section compression (we want LLVM/LLD to be built with zstd support)) -> ignore (ignored if LLVM wasn't build with zstd for ELF section compression or LLVM is not the default codegen backend (we want LLVM/LLD to be built with zstd support)) (J6)

Additionally, 2 doctest diffs were found. These are ignored, as they are noisy.

Job group index

Test dashboard

Run

cargo run --manifest-path src/ci/citool/Cargo.toml -- \
    test-dashboard 3f1552a273e43e15f6ed240d00e1efdd6a53e65e --output-dir test-dashboard

And then open test-dashboard/index.html in your browser to see an overview of all executed tests.

Job duration changes

  1. dist-apple-various: 3411.8s -> 4458.6s (30.7%)
  2. dist-x86_64-apple: 9059.0s -> 7347.0s (-18.9%)
  3. dist-aarch64-apple: 7427.7s -> 8495.3s (14.4%)
  4. aarch64-apple: 5608.5s -> 6326.1s (12.8%)
  5. dist-aarch64-linux: 5941.2s -> 6488.0s (9.2%)
  6. dist-aarch64-msvc: 5524.6s -> 5972.1s (8.1%)
  7. tidy: 183.2s -> 196.3s (7.1%)
  8. dist-i686-msvc: 8064.8s -> 8575.7s (6.3%)
  9. aarch64-msvc-1: 6846.1s -> 7272.2s (6.2%)
  10. x86_64-rust-for-linux: 2729.5s -> 2579.2s (-5.5%)
How to interpret the job duration changes?

Job durations can vary a lot, based on the actual runner instance
that executed the job, system noise, invalidated caches, etc. The table above is provided
mostly for t-infra members, for simpler debugging of potential CI slow-downs.

@rust-timer
Copy link
Collaborator

Finished benchmarking commit (3f1552a): comparison URL.

Overall result: no relevant changes - no action needed

@rustbot label: -perf-regression

Instruction count

This benchmark run did not return any relevant results for this metric.

Max RSS (memory usage)

This benchmark run did not return any relevant results for this metric.

Cycles

Results (secondary 13.4%)

A less reliable metric. May be of interest, but not used to determine the overall result above.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
13.4% [2.5%, 19.5%] 5
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) - - 0

Binary size

This benchmark run did not return any relevant results for this metric.

Bootstrap: 473.815s -> 474.121s (0.06%)
Artifact size: 390.60 MiB -> 390.61 MiB (0.00%)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-compiletest Area: The compiletest test runner A-testsuite Area: The testsuite used to check the correctness of rustc merged-by-bors This PR was explicitly merged by bors. rollup A PR which is a rollup S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

9 participants