X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=lib%2FGruntmaster%2FPage%2FLog%2FEntry.pm;h=2c4aa3acb5cfc1bec533ddf6e673a08e5c80e642;hb=e9e5c8a440a6e3a088a4b9330650e310561ef518;hp=e20c891307960a6fc5c1fd71679ef370c04134fc;hpb=bb95f538bf263c0294d87cfb90d58c66117b9aab;p=plack-app-gruntmaster.git diff --git a/lib/Gruntmaster/Page/Log/Entry.pm b/lib/Gruntmaster/Page/Log/Entry.pm index e20c891..2c4aa3a 100644 --- a/lib/Gruntmaster/Page/Log/Entry.pm +++ b/lib/Gruntmaster/Page/Log/Entry.pm @@ -9,6 +9,10 @@ our $VERSION = '0.001'; use constant TEMPLATES => { en => <<'HTML', +Compiler output: +
+ +Results:
Test numberResultTime @@ -26,13 +30,18 @@ sub _generate{ local $Gruntmaster::Data::contest = $1; my $id = $2; - my @tests = map { - $_->{time} = sprintf "%.4fs", $_->{time}; - $_ - } @{job_results $id}; + my @tests = (); + + eval { + @tests = map { + $_->{time} = sprintf "%.4fs", $_->{time}; + $_ + } @{job_results $id}; + }; $htc->param(id => $id); $htc->param(tests => \@tests); + $htc->param(errors => job_errors $id) } 1