forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#118082 - compiler-errors:rollup-ejsc8yd, r=co…
…mpiler-errors Rollup of 8 pull requests Successful merges: - rust-lang#117828 (Avoid iterating over hashmaps in astconv) - rust-lang#117832 (interpret: simplify handling of shifts by no longer trying to handle signed and unsigned shift amounts in the same branch) - rust-lang#117891 (Recover `dyn` and `impl` after `for<...>`) - rust-lang#117957 (if available use a Child's pidfd for kill/wait) - rust-lang#117988 (Handle attempts to have multiple `cfg`d tail expressions) - rust-lang#117994 (Ignore but do not assume region obligations from unifying headers in negative coherence) - rust-lang#118000 (Make regionck care about placeholders in outlives components) - rust-lang#118068 (subtree update cg_gcc 2023/11/17) r? `@ghost` `@rustbot` modify labels: rollup
- Loading branch information
Showing
54 changed files
with
795 additions
and
147 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -92,8 +92,10 @@ jobs: | |
- name: Build | ||
run: | | ||
./y.sh prepare --only-libcore | ||
./y.sh build --release --release-sysroot | ||
cargo test | ||
# TODO: remove `--features master` when it is back to the default. | ||
./y.sh build --release --release-sysroot --features master | ||
# TODO: remove --features master when it is back to the default. | ||
cargo test --features master | ||
- name: Clean | ||
if: ${{ !matrix.cargo_runner }} | ||
|
@@ -111,12 +113,14 @@ jobs: | |
uses: actions-rs/[email protected] | ||
with: | ||
command: build | ||
args: --release | ||
# TODO: remove `--features master` when it is back to the default. | ||
args: --release --features master | ||
|
||
- name: Run tests | ||
if: ${{ !matrix.cargo_runner }} | ||
run: | | ||
./test.sh --release --clean --release-sysroot --build-sysroot --mini-tests --std-tests --test-libcore | ||
# TODO: remove `--features master` when it is back to the default. | ||
./test.sh --release --clean --release-sysroot --build-sysroot --mini-tests --std-tests --test-libcore --features master | ||
- name: Run stdarch tests | ||
if: ${{ !matrix.cargo_runner }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
From 7bcd24ec6d4a96121874cb1ae5a23ea274aeff34 Mon Sep 17 00:00:00 2001 | ||
From a5663265f797a43c502915c356fe7899c16cee92 Mon Sep 17 00:00:00 2001 | ||
From: None <[email protected]> | ||
Date: Thu, 19 Oct 2023 13:12:51 -0400 | ||
Date: Sat, 18 Nov 2023 10:50:36 -0500 | ||
Subject: [PATCH] [core] Disable portable-simd test | ||
|
||
--- | ||
library/core/tests/lib.rs | 2 -- | ||
1 file changed, 2 deletions(-) | ||
|
||
diff --git a/library/core/tests/lib.rs b/library/core/tests/lib.rs | ||
index 5814ed4..194ad4c 100644 | ||
index d0a119c..76fdece 100644 | ||
--- a/library/core/tests/lib.rs | ||
+++ b/library/core/tests/lib.rs | ||
@@ -90,7 +90,6 @@ | ||
@@ -89,7 +89,6 @@ | ||
#![feature(never_type)] | ||
#![feature(unwrap_infallible)] | ||
#![feature(pointer_byte_offsets)] | ||
#![feature(pointer_is_aligned)] | ||
-#![feature(portable_simd)] | ||
#![feature(ptr_metadata)] | ||
#![feature(lazy_cell)] | ||
#![feature(unsized_tuple_coercion)] | ||
@@ -157,7 +156,6 @@ mod pin; | ||
@@ -155,7 +154,6 @@ mod pin; | ||
mod pin_macro; | ||
mod ptr; | ||
mod result; | ||
|
@@ -28,5 +28,5 @@ index 5814ed4..194ad4c 100644 | |
mod str; | ||
mod str_lossy; | ||
-- | ||
2.42.0 | ||
2.42.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[toolchain] | ||
channel = "nightly-2023-10-21" | ||
channel = "nightly-2023-11-17" | ||
components = ["rust-src", "rustc-dev", "llvm-tools-preview"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.