Skip to content
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

Removed bootstrap asserts #107483

Closed

Conversation

GentBinaku
Copy link

No description provided.

@rustbot
Copy link
Collaborator

rustbot commented Jan 30, 2023

Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @ozkanonur (or someone else) soon.

Please see the contribution instructions for more information.

@rustbot rustbot added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) labels Jan 30, 2023
@GentBinaku
Copy link
Author

r? @jyn514

@rustbot rustbot assigned jyn514 and unassigned onur-ozkan Jan 30, 2023
Copy link
Member

@Noratrieb Noratrieb left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe it would make sense to create a exit_error! macro that wraps the eprintln and detail_exit?

Comment on lines +57 to 60
if job.is_null() {
eprintln!("{}", io::Error::last_os_error());
}
assert!(!job.is_null(), "{}", io::Error::last_os_error());
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This seems redundant

Copy link
Member

@onur-ozkan onur-ozkan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree suggestion of @Nilstrieb, abstracting those eprintln, crate::detail_exit duplications can be better for future changes.

Comment on lines +472 to +477
match self.kind == Kind::Setup || !self.builder.src.join(alias).exists() {
true => {}
false => {
eprintln!("use `builder.path()` for real paths: {:?}", alias)
}
};
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if statement would better fit here

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is not a user-facing error message, this only happens if there's a bug in a Step. so I think an assert like before is better.

Comment on lines +1192 to +1198
match s == "if-available" {
false => {
eprintln!("unknown option `{}` for download-ci-llvm", s);
crate::detail_exit(1);
}
true => {}
};
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same here as well

@onur-ozkan onur-ozkan added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Jan 30, 2023
@jyn514
Copy link
Member

jyn514 commented Jan 30, 2023

r? @ozkanonur

@rustbot rustbot assigned onur-ozkan and unassigned jyn514 Jan 30, 2023
@rust-log-analyzer

This comment has been minimized.

Copy link
Member

@jyn514 jyn514 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've only glanced over this, but at a first glance it doesn't look right, it's changed every assert to an error message. I want to instead distinguish user errors from internal errors. I'm happy to give guidance on the difference but it may be a while before I can go line by line through the PR.

As a general rule:

  • If the panic can only happen because bootstrap's code itself was changed, it's an internal error (e.g. the Step checking in builder.rs)
  • If the panic can only happen because of a config.toml option or flags passed to bootstrap, before any commands are run, it's a user error
  • If the panic happens because of an external command it's ambiguous, but I would prefer to default to panicking so people report the bug.
  • If the panic happens because of an I/O error it's likely an internal error.
  • If the panic should never happen (e.g. "path traversal attack") it's an internal error

@rust-log-analyzer
Copy link
Collaborator

The job x86_64-gnu-llvm-13 failed! Check out the build log: (web) (plain)

Click to see the possible cause of the failure (guessed by this bot)
Prepare all required actions
Getting action download info
Download action repository 'actions/checkout@v3' (SHA:ac593985615ec2ede58e132d2e21d2b1cbd6127c)
Download action repository 'rust-lang/simpleinfra@master' (SHA:aa723573e04016ede7da6c5d7b029e72cb8a05a3)
Complete job name: PR (x86_64-gnu-llvm-13, false, ubuntu-20.04-xl)
git config --global core.autocrlf false
shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
env:
  CI_JOB_NAME: x86_64-gnu-llvm-13
---
test builder::tests::test_intersection ... ok
error: test failed, to rerun pass `--lib`

Caused by:
  process didn't exit successfully: `/checkout/obj/build/bootstrap/debug/deps/bootstrap-ee2956ab5ba3b811 --test-threads=1` (exit status: 1)

@jyn514
Copy link
Member

jyn514 commented Feb 5, 2023

Maybe a simpler rule is "would it be helpful to show a backtrace of where the error is emitted?" If so it should be a panic, if not it should use eprintln.

@onur-ozkan
Copy link
Member

onur-ozkan commented Feb 5, 2023

Maybe a simpler rule is "would it be helpful to show a backtrace of where the error is emitted?" If so it should be a panic, if not it should use eprintln.

IMO having backtrace on errors always nicer than not having it. There should be a huge cost(which I can't see any in this PR's case) for avoiding such need.

@jyn514
Copy link
Member

jyn514 commented Feb 5, 2023

I don't agree, "option X can't be combined with download-ci-llvm" is clear on its own and doesn't need a backtrace. And using panics for expected errors makes it more likely that people will ignore real bugs that we do want them to report.

@onur-ozkan
Copy link
Member

using panics for expected errors makes it more likely that people will ignore real bugs that we do want them to report.

I didn't look from this perspective. Seems reasonable and makes sense.

@bors
Copy link
Collaborator

bors commented Feb 15, 2023

☔ The latest upstream changes (presumably #108056) made this pull request unmergeable. Please resolve the merge conflicts.

@JohnCSimon
Copy link
Member

@GentBinaku
ping from triage - can you post your status on this PR?

FYI: when a PR is ready for review, send a message containing
@rustbot ready to switch to S-waiting-on-review so the PR is in the reviewer's backlog.

@jyn514
Copy link
Member

jyn514 commented Apr 5, 2023

I'm going to close this since it's been a while - feel free to reopen if you have time to work on it again.

@jyn514 jyn514 closed this Apr 5, 2023
@jyn514 jyn514 added the S-inactive Status: Inactive and waiting on the author. This is often applied to closed PRs. label Apr 5, 2023
@jyn514 jyn514 removed the S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. label Apr 5, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-inactive Status: Inactive and waiting on the author. This is often applied to closed PRs. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

8 participants