-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
LibGit2/test: Print failed process PID on challenge prompt failure #45798
Conversation
Makes it easier to locate the failed process in an rr trace after the fact (cf #45797).
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.
It seems like this should be findable by looking for ppid=579 signal=15 in rr ps
?
You'd think so, but I don't see any such process, so it may have exited without the parent noticing or something. |
pid 1978 in julia-9 is the only child that reports to be killed with signal 15 |
Oh, so it does. I missed it. |
rr doesn't like that particular pid either: rr-debugger/rr#3285 |
I have an alternative solution, which is to print the PID in |
Probably worth doing both. @staticfloat's change relies on the child being alive enough to run it's signals handlers, which it may not be sometimes. |
May be worth doing still, but heavily conflicted now for a small change. And hasn't seemed necessary lately (just a test enhancement) |
Makes it easier to locate the failed process in an rr trace after
the fact (cf #45797).