-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
rustbuild: add config.toml option to disable codegen tests #36234
Conversation
6fd0c45
to
20a2f87
Compare
@@ -129,6 +129,7 @@ | |||
# with debuginfo (the -g flag) | |||
#optimize-tests = true | |||
#debuginfo-tests = true | |||
#codegen-tests = true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is actually slightly different from the above config because it disables tests rather than configure how they're compiled. Perhaps this could have its own doc block explaining it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops, I didn't even read the doc block, was just following the pattern.
20a2f87
to
0efc4bf
Compare
@bors: r+ |
📌 Commit 0efc4bf has been approved by |
…xcrichton rustbuild: add config.toml option to disable codegen tests Fixes rust-lang#36232. I think it worked? Here's a build log where I tried to bootstrap, it crashed, then I added the setting to config.toml and it continued: https://gist.github.com/durka/cbf97cf04b8e065f1a2cfda4c1b6bf95 r? @alexcrichton
…xcrichton rustbuild: add config.toml option to disable codegen tests Fixes rust-lang#36232. I think it worked? Here's a build log where I tried to bootstrap, it crashed, then I added the setting to config.toml and it continued: https://gist.github.com/durka/cbf97cf04b8e065f1a2cfda4c1b6bf95 r? @alexcrichton
Fixes #36232.
I think it worked? Here's a build log where I tried to bootstrap, it crashed, then I added the setting to config.toml and it continued: https://gist.github.com/durka/cbf97cf04b8e065f1a2cfda4c1b6bf95
r? @alexcrichton