Changeset 21805 for util

Show
Ignore:
Timestamp:
08/06/08 13:27:49 (4 months ago)
Author:
audreyt
Message:

* Make Time::Out properly work with 60sec.

masak++ for pointing out the chain-hanging bug.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • util/yaml_harness.pl

    r21804 r21805  
    291291    use Time::Out 'timeout'; 
    292292    my $results = Test::Harness::Results->new; 
    293     timeout 10 => sub { $results = $self->_analyze_iterator($name, $it) }; 
     293    timeout 60 => sub { $results = $self->_analyze_iterator($name, $it) }; 
    294294    return $results; 
    295295}