~ubuntu-branches/ubuntu/trusty/libfennec-perl/trusty-proposed

« back to all changes in this revision

Viewing changes to lib/Fennec/Finder.pm

  • Committer: Package Import Robot
  • Author(s): Xavier Guimard, gregor herrmann, Xavier Guimard
  • Date: 2013-06-01 07:57:18 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20130601075718-fql5yhwswx2of8ir
Tags: 2.005-1
[ gregor herrmann ]
* Drop unneeded version from libparallel-runner-perl (build) dependency.
  Nothing older in the archive.

[ Xavier Guimard ]
* Imported Upstream version 2.005

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
    for my $file ( @{$self->test_files} ) {
62
62
        $frunner->run(
63
63
            sub {
64
 
                $self->pid($$);
65
 
 
66
64
                $self->load_file($file);
67
65
 
68
66
                for my $class ( shuffle @{$self->test_classes} ) {
72
70
            },
73
71
            1
74
72
        );
 
73
 
 
74
        $self->check_pid;
75
75
    }
76
76
 
77
77
    $frunner->finish();
79
79
    if ($follow) {
80
80
        $self->collector->collect;
81
81
        verbose_message("Entering final follow-up stage\n");
82
 
        $follow->();
 
82
        eval { $follow->(); 1 } || $self->exception( 'done_testing', $@ );
83
83
    }
84
84
 
85
85
    $self->collector->collect;