https://bugzilla.redhat.com/show_bug.cgi?id=1189459



--- Comment #1 from Petr Pisar <[email protected]> ---
This is caused by upgrading perl-Term-ReadLine-Gnu from 1.25 to 1.26. The
dead-lock is here:

$ prove -b -v t/07-initialize.t
t/07-initialize.t ..
1..4
ok 1 - initialize with prams
LOCK
ok 2 - quit with prams
ok 3 - initialize without prams
ok 4 - quit witout prams
ok

Either is a bug in the perl-Term-ReadLine-Gnu or it's a race in the test
because of suspicious sleep call:

    ok( my $debugger = Debug::Client->new(
            host   => $host,
            port   => $port,
            porto  => $porto,
            listen => $listen,
            reuse  => $reuse_addr
        ),
        'initialize with prams'
    );
    $debugger->run;

    sleep 1;

    ok( $debugger->quit, 'quit with prams' );

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=72a5mpLJ82&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
[email protected]
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Reply via email to