Merged
Conversation
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Member
Author
|
@bors try |
bors
added a commit
to rust-lang-ci/rust
that referenced
this pull request
Dec 26, 2024
…s, r=<try> (mostly) blindly enable more tests on Windows r? ghost try-job: x86_64-msvc try-job: i686-msvc
Collaborator
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Collaborator
|
💔 Test failed - checks-actions |
74bb9cc to
e3d02ee
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Member
Author
|
@bors try |
Collaborator
bors
added a commit
to rust-lang-ci/rust
that referenced
this pull request
Dec 27, 2024
…s, r=<try> (mostly) blindly enable more tests on Windows r? ghost try-job: x86_64-msvc try-job: i686-msvc
This comment has been minimized.
This comment has been minimized.
Collaborator
|
💔 Test failed - checks-actions |
jfrimmel
reviewed
Dec 28, 2024
| @@ -1,4 +1,3 @@ | |||
| // | |||
| //@ ignore-windows | |||
Contributor
There was a problem hiding this comment.
Looks like you'd want to delete this line as well:
Suggested change
| //@ ignore-windows |
9d31a30 to
6e16232
Compare
Collaborator
|
☔ The latest upstream changes (presumably #134966) made this pull request unmergeable. Please resolve the merge conflicts. |
6e16232 to
78489be
Compare
bors
added a commit
to rust-lang-ci/rust
that referenced
this pull request
Feb 3, 2025
…iaskrgr Rollup of 7 pull requests Successful merges: - rust-lang#134777 (Enable more tests on Windows) - rust-lang#134807 (fix(rustdoc): always use a channel when linking to doc.rust-lang.org) - rust-lang#135621 (Move some std tests to integration tests) - rust-lang#135836 (bootstrap: only build `crt{begin,end}.o` when compiling to MUSL) - rust-lang#136235 (Pretty print pattern type values with transmute if they don't satisfy their pattern) - rust-lang#136392 (bootstrap: add wrapper macros for `feature = "tracing"`-gated `tracing` macros) - rust-lang#136462 (mir_build: Simplify `lower_pattern_range_endpoint`) r? `@ghost` `@rustbot` modify labels: rollup
jieyouxu
reviewed
Feb 3, 2025
| @@ -1,5 +1,4 @@ | |||
| //@ ignore-windows different list of satisfying impls | |||
| //@ ignore-arm different list of satisfying impls | |||
Member
There was a problem hiding this comment.
This //@ ignore-arm is needed because
46 = note: multiple `impl`s satisfying `u32: From<_>` found in the `core` crate:
47 - impl From<Char> for u32;
48 - impl From<Ipv4Addr> for u32;
+ - impl From<Simd<u16, 2>> for u32;
+ - impl From<Simd<u8, 4>> for u32;
Member
|
Failed in #136470 (comment) 46 = note: multiple `impl`s satisfying `u32: From<_>` found in the `core` crate:
47 - impl From<Char> for u32;
48 - impl From<Ipv4Addr> for u32;
+ - impl From<Simd<u16, 2>> for u32;
+ - impl From<Simd<u8, 4>> for u32;@bors r- |
5efee2c to
172fa9e
Compare
Member
Author
|
@bors r=Noratrieb |
Collaborator
This comment has been minimized.
This comment has been minimized.
Member
Author
|
@bors r- |
172fa9e to
7dfc786
Compare
Member
Author
|
@bors r=Noratrieb |
Collaborator
bors
added a commit
to rust-lang-ci/rust
that referenced
this pull request
Feb 4, 2025
Rollup of 5 pull requests Successful merges: - rust-lang#134777 (Enable more tests on Windows) - rust-lang#135621 (Move some std tests to integration tests) - rust-lang#135844 ( Add new tool for dumping feature status based on tidy ) - rust-lang#136167 (Implement unstable `new_range` feature) - rust-lang#136334 (Extract `core::ffi` primitives to a separate (internal) module) Failed merges: - rust-lang#136201 (Removed dependency on the field-offset crate, alternate approach) r? `@ghost` `@rustbot` modify labels: rollup
rust-timer
added a commit
to rust-lang-ci/rust
that referenced
this pull request
Feb 4, 2025
Rollup merge of rust-lang#134777 - saethlin:enable-more-tests-on-windows, r=Noratrieb Enable more tests on Windows As part of the discussion of rust-lang/compiler-team#822 on Zulip, it was mentioned that problems with the i686-pc-windows-gnu target may have resulted in tests being disabled on Windows. So in this PR, I've ripped out all our `//@ ignore-windows` directives, then re-added all the ones that are definitely required based on the outcome of try-builds, and in some cases I've improved the justification or tightened the directives to `//@ ignore-msvc` or ignoring specific targets.
github-actions bot
pushed a commit
to tautschnig/verify-rust-std
that referenced
this pull request
Mar 11, 2025
Rollup of 5 pull requests Successful merges: - rust-lang#134777 (Enable more tests on Windows) - rust-lang#135621 (Move some std tests to integration tests) - rust-lang#135844 ( Add new tool for dumping feature status based on tidy ) - rust-lang#136167 (Implement unstable `new_range` feature) - rust-lang#136334 (Extract `core::ffi` primitives to a separate (internal) module) Failed merges: - rust-lang#136201 (Removed dependency on the field-offset crate, alternate approach) r? `@ghost` `@rustbot` modify labels: rollup
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
As part of the discussion of rust-lang/compiler-team#822 on Zulip, it was mentioned that problems with the i686-pc-windows-gnu target may have resulted in tests being disabled on Windows.
So in this PR, I've ripped out all our
//@ ignore-windowsdirectives, then re-added all the ones that are definitely required based on the outcome of try-builds, and in some cases I've improved the justification or tightened the directives to//@ ignore-msvcor ignoring specific targets.