mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-04 22:18:29 +02:00
Only generate HTML for log files passed on the command line.
With the make bits already in place, this means that make retest creates HTML for only the retested tests.
This commit is contained in:
parent
4b22cb41a9
commit
6c7099b0cc
1 changed files with 3 additions and 1 deletions
|
|
@ -45,7 +45,9 @@ my $tests = {};
|
|||
|
||||
my $teststats = {};
|
||||
|
||||
foreach (<*.log>) {
|
||||
if ($#ARGV >= 0) { @files = @ARGV; } else { @files = <*.log>; }
|
||||
|
||||
foreach (<@files>) {
|
||||
(open LOG, "$_") || next;
|
||||
while (<LOG>) {
|
||||
next unless /^TEST: (.*) TARGET: (.*) FORMAT: (.*) OFFSET: (.*) RESULT: (.*)$/;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue