-
Notifications
You must be signed in to change notification settings - Fork 18
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
Hangs on ptee [rt.cpan.org #62310] #59
Comments
In the original RT ticket from which this GH issue was migrated, there were additional comments which provided more data on the problem. Example:
Today I tried to reproduce the original problem on Linux using a threaded debugging perl built at a recent commit of blead. (I had previously installed Task::CPAN::Reporter against this perl.)
I then used the associated
At some prompts I typed in the path; at others I didn't. Either way, I didn't experience the indefinite hangs reported in the original ticket and confirmed by others over the years. Of course, I may be misunderstanding the problem. But if not, then I think this ticket is closable. I did notice several instances of uninitialized value warnings from MakeMaker as shown above. I haven't yet analyzed them. |
As demonstrated in cpan-testers/CPAN-Reporter#59 (comment), it is possible to exercise subroutine maybe_command() without a defined argument. We should preclude this from happening.
And thereby avoid uninitialized value warning. As demonstrated in cpan-testers/CPAN-Reporter#59 (comment), it is possible to exercise subroutine maybe_command() without a defined argument. We should preclude this from happening. Test explicitly for return value in edge cases as well as absence of warnings.
And thereby avoid uninitialized value warning. As demonstrated in cpan-testers/CPAN-Reporter#59 (comment), it is possible to exercise subroutine maybe_command() without a defined argument. We should preclude this from happening. Test explicitly for return value in edge cases as well as absence of warnings. Simplify code per Ilmari review: https://github.com/Perl-Toolchain-Gang/ExtUtils-MakeMaker/pull/449/files
And thereby avoid uninitialized value warning. As demonstrated in cpan-testers/CPAN-Reporter#59 (comment), it is possible to exercise subroutine maybe_command() without a defined argument. We should preclude this from happening. Test explicitly for return value in edge cases as well as absence of warnings. Simplify code per Ilmari review: https://github.com/Perl-Toolchain-Gang/ExtUtils-MakeMaker/pull/449/files
https://rt.cpan.org/Ticket/Display.html?id=62310
The text was updated successfully, but these errors were encountered: