diff options
author | Felipe Contreras <felipe.contreras@gmail.com> | 2023-03-09 18:30:31 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-03-09 23:57:55 +0100 |
commit | 5d1d62e87540fd43bb16b123c9c73b022cc463e2 (patch) | |
tree | e1869eae245ff03130e618ae655021687262163b /contrib | |
parent | Git 2.40-rc2 (diff) | |
download | git-5d1d62e87540fd43bb16b123c9c73b022cc463e2.tar.xz git-5d1d62e87540fd43bb16b123c9c73b022cc463e2.zip |
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>
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/subtree/t/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/contrib/subtree/t/Makefile b/contrib/subtree/t/Makefile index 4655e0987b..aa204d43b6 100644 --- a/contrib/subtree/t/Makefile +++ b/contrib/subtree/t/Makefile @@ -74,9 +74,7 @@ aggregate-results-and-cleanup: $(T) $(MAKE) clean aggregate-results: - for f in '$(TEST_RESULTS_DIRECTORY_SQ)'/t*-*.counts; do \ - echo "$$f"; \ - done | '$(SHELL_PATH_SQ)' ../../../t/aggregate-results.sh + '$(SHELL_PATH_SQ)' ../../../t/aggregate-results.sh '$(TEST_RESULTS_DIRECTORY_SQ)' valgrind: $(MAKE) GIT_TEST_OPTS="$(GIT_TEST_OPTS) --valgrind" |