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

Avoid waiting on a single test for output #72

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Avoid waiting on a single test for output #72

wants to merge 1 commit into from

Commits on Feb 9, 2018

  1. Avoid waiting on a single test for output

    When running Perl's prove with multiple jobs (-j #), the running jobs can
    get stuck waiting on a single test to complete.  This occurs when a test
    outputs to STDERR, but does not output to STDOUT for some time after that.
    The parser iterator gets stuck waiting for can_read() on that one test,
    instead of looking at all of the running tests.
    
    Avoid this slowdown by returning, potentially early, to ensure nothing
    holds up the other tests.
    ColMelvin committed Feb 9, 2018
    Configuration menu
    Copy the full SHA
    3eb1065 View commit details
    Browse the repository at this point in the history