-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
download-rustc has no effect when running run-make tests #131947
Comments
Why do you want to run tests on the downloaded compiler? |
I don't quite understand this use case. Could you elaborate why you want this, or what this is in the context of? |
If you only modified the standard library and want to run run-make tests to see if your change broke something, I would expect download-rustc be enough to avoid having to recompile the compiler itself. There is no need to recompile the compiler in that case as it wasn't modified. |
I see |
in my case, i was trying to modify compiletest, but it also would be useful if you're modifying the tests themselves. |
For compiletest specifically, compiletest is a stage0 bootstrap tool, so you can just |
Fixed with #132006. |
reproduction steps:
rust.download-rustc = true
in config.toml./x test --stage 1 tests/run-make
expected behavior: rustc is downloaded
actually behavior: rustc and cargo are built from source
The text was updated successfully, but these errors were encountered: