Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
5aec2e7
Remove needs-asm-support directive in tests with explicit targets
Oct 6, 2025
385633c
Auto merge of #147910 - joboet:wait_timeout-spurious-test, r=ChrisDenton
bors Oct 20, 2025
97c35c1
Auto merge of #147867 - cjgillot:invalidate-cleanup, r=tmiasko
bors Oct 21, 2025
57689ec
Rollup merge of #147125 - connortsui20:poison-once-remove, r=tgross35
Zalathar Oct 21, 2025
c8c55e1
Rollup merge of #147800 - makai410:rp-cache-obj, r=celinval
Zalathar Oct 21, 2025
e1e4db4
Rollup merge of #147860 - lolbinarycat:rustdoc-search-relax-ident-rul…
Zalathar Oct 21, 2025
4a76c90
Rollup merge of #147924 - tshepang:rdg-sync, r=tshepang
Zalathar Oct 21, 2025
1c5a336
Auto merge of #147928 - Zalathar:rollup-2lmpajs, r=Zalathar
bors Oct 21, 2025
aa42bd2
Auto merge of #147476 - ehuss:cold-attribute-test, r=chenyukang
bors Oct 21, 2025
b04e222
Auto merge of #147922 - Kivooeo:dead-link, r=petrochenkov
bors Oct 21, 2025
f65f0c0
Auto merge of #147723 - ChayimFriedman2:ns-types, r=BoxyUwU
bors Oct 21, 2025
d9b71f6
Auto merge of #146725 - lcnr:eager-instantiate-binder, r=BoxyUwU
bors Oct 21, 2025
3e89e0b
Auto merge of #147022 - Zalathar:no-args, r=wesleywiser
bors Oct 22, 2025
57b3ddc
Auto merge of #147687 - cjgillot:noshallow-init-box, r=nnethercote
bors Oct 22, 2025
d716a4b
Auto merge of #147826 - Muscraft:update-typos, r=Noratrieb
bors Oct 22, 2025
e45313d
Auto merge of #147207 - Muscraft:anstyle-anstream, r=davidtwco
bors Oct 22, 2025
3c5e16e
Auto merge of #147810 - bjorn3:lto_refactors6, r=wesleywiser
bors Oct 22, 2025
5061969
Rollup merge of #147406 - jchecahi:remove-needs-asm-support-explicit,…
jhpratt Oct 25, 2025
08091ca
Rollup merge of #148056 - epage:merged, r=GuillaumeGomez
jhpratt Oct 25, 2025
5499620
Rollup merge of #148065 - Zalathar:test-paths, r=jieyouxu
jhpratt Oct 25, 2025
2dbc260
Rollup merge of #148072 - madsmtm:fix-apple-condvar-32bit, r=joboet
jhpratt Oct 25, 2025
856c4f7
Rollup merge of #148073 - epage:org-frontmatter, r=jieyouxu
jhpratt Oct 25, 2025
96b51fe
Auto merge of #148090 - jhpratt:rollup-n260hcy, r=jhpratt
bors Oct 25, 2025
ef13c71
Auto merge of #147493 - cjgillot:single-pin, r=oli-obk
bors Oct 25, 2025
36538ec
Auto merge of #148100 - matthiaskrgr:rollup-vrd4wy8, r=matthiaskrgr
bors Oct 25, 2025
d221246
Auto merge of #148066 - lcnr:remove-perf-hack, r=BoxyUwU
bors Oct 25, 2025
6055c01
Auto merge of #147818 - rperier:unify_and_dedup_max_recip_float_tests…
bors Oct 26, 2025
427e7dd
Auto merge of #145665 - GrigorenkoPV:144707, r=tgross35
bors Oct 26, 2025
e4b2e4d
Auto merge of #148003 - aDotInTheVoid:rustdoc-postcard-compiletest-gr…
bors Oct 26, 2025
66b38e8
Auto merge of #146992 - GuillaumeGomez:improve-highlight, r=yotamofek…
bors Oct 26, 2025
f94cd4e
Auto merge of #147914 - petrochenkov:oosmc-used, r=fmease
bors Oct 26, 2025
12dc105
Prepare for merging from rust-lang/rust
invalid-email-address Oct 27, 2025
0579bde
Merge ref 'b1b464d6f61e' from rust-lang/rust
invalid-email-address Oct 27, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rust-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4068bafedd8ba724e332a5221c06a6fa531a30d2
b1b464d6f61ec8c4e609c1328106378c066a9729
6 changes: 4 additions & 2 deletions src/tests/directives.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,10 @@ Some examples of `X` in `ignore-X` or `only-X`:
The following directives will check rustc build settings and target
settings:

- `needs-asm-support` — ignores if it is running on a target that doesn't have
stable support for `asm!`
- `needs-asm-support` — ignores if the **host** architecture doesn't have
stable support for `asm!`. For tests that cross-compile to explicit targets
via `--target`, use `needs-llvm-components` instead to ensure the appropriate
backend is available.
- `needs-profiler-runtime` — ignores the test if the profiler runtime was not
enabled for the target
(`build.profiler = true` in rustc's `bootstrap.toml`)
Expand Down