Uh oh!
There was an error while loading. Please reload this page.
[DO NOT MERGE] deny array_into_iter by default (for crater run) - #66201
[DO NOT MERGE] deny array_into_iter by default (for crater run)#66201LukasKalbertodt wants to merge 1 commit into
array_into_iter by default (for crater run)#66201Conversation
rust-highfive
commented
Nov 7, 2019
r? @davidtwco (rust_highfive has picked a reviewer for you, use r? to override) |
joelpalmer
commented
Nov 18, 2019
Ping from Triage: @davidtwco@LukasKalbertodt any updates? |
LukasKalbertodt
commented
Nov 18, 2019
From my side this is ready. We just have to decide if a crater run is useful and then someone needs to prepare a list of all crates that we want to test again and start crater. In my top post I list a few questions about crater; if someone can answer them, that would be helpful. |
davidtwco
commented
Nov 18, 2019
I'm not sure I'm the best person to review this, r? @Centril |
Centril
commented
Nov 19, 2019
cc @pietroalbini for the crater questions. |
emilyalbini
commented
Nov 19, 2019
No. |
LukasKalbertodt
commented
Nov 23, 2019
Given that we can't test for specific versions, I will just close this PR now. I doubt testing "roughly the same set of crates" gives us any useful information. |
In #66017 I had the idea of letting crater test all regressions from #65819 with the
array_into_iterlint on deny. That way we would be able to find out if the lint catches all of the regressions. There is certainly code that could break with #65819 but isn't caught by the lint (see this comment), but we don't know if strange code like that exists in the real world at all.However, I assumed that we can tell crater to compile the exact version of all crates as in the previous run. Looking at this comment it seems like we can only pass crate names (without version) to crater? So....
Can we tell crater which versions of crates to build?NoCan we even tell crater something like "never use dependency versions released after date X"?No