summaryrefslogtreecommitdiffstats
path: root/t/aggregate-results.sh
diff options
context:
space:
mode:
authorBrandon Casey <drafnel@gmail.com>2010-06-02 02:13:44 +0200
committerJunio C Hamano <gitster@pobox.com>2010-06-02 18:36:49 +0200
commit6508eedf670c180934db880b50a9a6b930acbf02 (patch)
tree99ffb2d649a7a959ad146d3bb9fe2a07d16dd534 /t/aggregate-results.sh
parentt/t7006: ignore return status of shell's unset builtin (diff)
downloadgit-6508eedf670c180934db880b50a9a6b930acbf02.tar.xz
git-6508eedf670c180934db880b50a9a6b930acbf02.zip
t/aggregate-results: accomodate systems with small max argument list length
IRIX 6.5 has a default maximum argument list length of 20480. The file glob that is passed to aggregate-results currently exceeds this length, and so the script cannot run successfully. Work around this issue by passing the file names in via the standard input rather than the argument list. Signed-off-by: Brandon Casey <casey@nrlssc.navy.mil> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/aggregate-results.sh')
-rwxr-xr-xt/aggregate-results.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/aggregate-results.sh b/t/aggregate-results.sh
index d5bab75d7d..d206b7c4cf 100755
--- a/t/aggregate-results.sh
+++ b/t/aggregate-results.sh
@@ -6,7 +6,7 @@ failed=0
broken=0
total=0
-for file
+while read file
do
while read type value
do