Skip to content

Rollup of 11 pull requests #139838

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 41 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
5cda2a9
run all 'thread' tests on FreeBSD, and also on 32bit
RalfJung Apr 10, 2025
f254ab2
Merge pull request #4266 from RalfJung/freebsd
RalfJung Apr 10, 2025
2d37173
Bump crossbeam-channel from 0.5.14 to 0.5.15
dependabot[bot] Apr 10, 2025
d1f901a
Merge pull request #4267 from rust-lang/dependabot/cargo/crossbeam-ch…
RalfJung Apr 10, 2025
f243cb8
Implement RtlNtStatusToDosError and shim test for it
CraftSpider Apr 10, 2025
7284100
Merge pull request #4261 from CraftSpider/windows-rtl-to-dos
RalfJung Apr 10, 2025
49cc860
fix build fail on macos bacause of libffi-sys 2.3.0; This updates lib…
LorrensP-2158466 Apr 11, 2025
6788ce7
Remove proc_macro::SourceFile::is_real().
m-ou-se Apr 11, 2025
3962069
Replace proc_macro::SourceFile by Span::{file, local_file}.
m-ou-se Apr 11, 2025
52b204e
Merge pull request #4268 from LorrensP-2158466/update-libffi
saethlin Apr 11, 2025
5113f5e
Update rust-analyzer for new proc_macro span api.
m-ou-se Apr 11, 2025
c462002
Preparing for merge from rustc
Apr 12, 2025
352545f
Merge from rustc
Apr 12, 2025
59a3730
fmt
Apr 12, 2025
1f8cb69
Merge pull request #4270 from rust-lang/rustup-2025-04-12
oli-obk Apr 12, 2025
15a93c5
std/thread: Use default stack size from menuconfig for NuttX
no1wudi Apr 13, 2025
abce592
Use `Symbol` in `LateContext::get_associated_type`.
nnethercote Apr 11, 2025
ce2aa97
Move `has_self` field to `hir::AssocKind::Fn`.
nnethercote Apr 10, 2025
1ac3d6b
Let CStrings be either 1 or 2 byte aligned.
fneddy Apr 14, 2025
9c88eb6
normalize: prefer ParamEnv over AliasBound
lcnr Apr 14, 2025
1b46969
Specify `--print info=file` syntax in `--help`
clubby789 Apr 14, 2025
1f3199c
Disable some r-a tests in bootstrap.
m-ou-se Apr 14, 2025
758e99a
update lockfile
RalfJung Apr 14, 2025
4b63362
Use `newtype_index!`-generated types more idiomatically
yotamofek Apr 14, 2025
188d44d
Fix: Map EOPNOTSUPP to ErrorKind::Unsupported on Unix
0x79de Apr 14, 2025
cb22c1d
Allow (but don't require) `#[unsafe(naked)]` so that `compiler-builti…
folkertdev Apr 14, 2025
b26f3d4
Move `opt_rpitit_info` field to `hir::AssocKind::Type`.
nnethercote Apr 11, 2025
89e93a5
Move two methods from `AssocKind` to `AssocItem`.
nnethercote Apr 14, 2025
78599d8
Move `name` field from `AssocItem` to `AssocKind` variants.
nnethercote Apr 14, 2025
1376810
Basic tests of MPMC receiver cloning
glyn Apr 15, 2025
9b071ca
Rollup merge of #139669 - nnethercote:overhaul-AssocItem, r=oli-obk
Zalathar Apr 15, 2025
ea3b1d3
Rollup merge of #139671 - m-ou-se:proc-macro-span, r=dtolnay
Zalathar Apr 15, 2025
a56dbf1
Rollup merge of #139750 - no1wudi:fix, r=tgross35
Zalathar Apr 15, 2025
432f04b
Rollup merge of #139785 - fneddy:fix_test_cstring_merging_alignment, …
Zalathar Apr 15, 2025
312325b
Rollup merge of #139797 - folkertdev:naked-allow-unsafe, r=tgross35
Zalathar Apr 15, 2025
e065a00
Rollup merge of #139798 - lcnr:where-bounds-gt-alias-bound, r=compile…
Zalathar Apr 15, 2025
9551264
Rollup merge of #139799 - clubby789:print=file, r=jieyouxu
Zalathar Apr 15, 2025
813d67e
Rollup merge of #139811 - yotamofek:pr/newtype_cleanups, r=oli-obk
Zalathar Apr 15, 2025
2269731
Rollup merge of #139813 - RalfJung:miri-sync, r=RalfJung
Zalathar Apr 15, 2025
35fb2d3
Rollup merge of #139822 - 0x79de:fix-eopnotsupp-mapping, r=dtolnay
Zalathar Apr 15, 2025
55d9581
Rollup merge of #139836 - glyn:test-mpmc-receiver-cloning, r=jhpratt
Zalathar Apr 15, 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
Prev Previous commit
Next Next commit
Disable some r-a tests in bootstrap.
  • Loading branch information
m-ou-se committed Apr 14, 2025
commit 1f3199c89995ee7ae5cbdaa81d1df5138660d61a
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ fn test_fn_like_macro_clone_raw_ident() {
}

#[test]
#[cfg(not(bootstrap))]
fn test_fn_like_fn_like_span_join() {
assert_expand(
"fn_like_span_join",
Expand All @@ -111,6 +112,7 @@ fn test_fn_like_fn_like_span_join() {
}

#[test]
#[cfg(not(bootstrap))]
fn test_fn_like_fn_like_span_ops() {
assert_expand(
"fn_like_span_ops",
Expand Down
Loading