If no tests were run, for example in p7822-grep-perl-character.sh, that's not a fatal error, just skip to the next one. Cc: Christian Couder <chriscool@xxxxxxxxxxxxx> Signed-off-by: Felipe Contreras <felipe.contreras@xxxxxxxxx> --- t/perf/aggregate.perl | 1 + 1 file changed, 1 insertion(+) diff --git a/t/perf/aggregate.perl b/t/perf/aggregate.perl index 575d2000cc..a79451a0af 100755 --- a/t/perf/aggregate.perl +++ b/t/perf/aggregate.perl @@ -156,6 +156,7 @@ sub sane_backticks { $t =~ s{(?:.*/)?(p(\d+)-[^/]+)\.sh$}{$1} or die "bad test name: $t"; my $n = $2; my $fname = "$resultsdir/$t.subtests"; + next unless (-e $fname); open my $fp, "<", $fname or die "cannot open $fname: $!"; for (<$fp>) { chomp; -- 2.39.2.13.g1fb56cf030