-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Remove unused files from libcoretest #29079
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
Conversation
r? @brson (rust_highfive has picked a reviewer for you, use r? to override) |
It looks to me like they should be added to coretest since these tests don't exist anywhere else. Can you add them back to the crate? |
1f1c4e3
to
6aa5237
Compare
Yeah that makes sense. I've updated the PR. I only changed |
⌛ Testing commit 6aa5237 with merge 3687c5f... |
…st, r=alexcrichton While working on rust-lang#28711 I found out that * src/libcoretest/clone.rs * src/libcoretest/fmt/float.rs * src/libcoretest/intrinsics.rs are not used. I am not sure if removing them is the right way to go. If it makes sense to keep (and fix and enable) them, I would be happy to update the PR.
⛄ The build was interrupted to prioritize another pull request. |
⌛ Testing commit 6aa5237 with merge a668a03... |
💔 Test failed - auto-mac-32-opt |
It seems like to rounding behavior has changed: |
I believe that's probably because 9.85 isn't representable as a float, for example:
|
6aa5237
to
268f3c8
Compare
268f3c8
to
510360d
Compare
Ah I see. I have updated the test. |
…richton While working on #28711 I found out that * src/libcoretest/clone.rs * src/libcoretest/fmt/float.rs * src/libcoretest/intrinsics.rs are not used. I am not sure if removing them is the right way to go. If it makes sense to keep (and fix and enable) them, I would be happy to update the PR.
While working on #28711 I found out that
are not used. I am not sure if removing them is the right way to go. If it makes sense to keep (and fix and enable) them, I would be happy to update the PR.