test: simplify counts aggregation

When the list of files as input was implemented in 6508eedf67
(t/aggregate-results: accomodate systems with small max argument list
length, 2010-06-01), a much simpler solution wasn't considered.

Let's just pass the directory as an argument.

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Felipe Contreras
2023-03-09 11:30:31 -06:00
committed by Junio C Hamano
parent 725f57037d
commit 5d1d62e875
3 changed files with 3 additions and 7 deletions

View File

@@ -8,7 +8,7 @@ broken=0
total=0
missing_prereq=
while read file
for file in "$1"/t*-*.counts
do
while read type value
do