diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-02-10 14:20:10 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-02-10 14:20:10 -0800 |
commit | 4ecc59aa427000fcd02325e067e178c15111c48a (patch) | |
tree | 72a7ad35df0b0509c9011cc64af9a66f777f2711 | |
parent | fb795323ce3ce5a358f8e55641777b9cdbeab846 (diff) | |
parent | 6129c930b22dc21e860dd1cddf73c6e45442e620 (diff) | |
download | git-4ecc59aa427000fcd02325e067e178c15111c48a.tar.gz git-4ecc59aa427000fcd02325e067e178c15111c48a.tar.xz |
Merge branch 'js/test-lib-windows-emulated-yes'
The emulated "yes" command used in our test scripts has been
tweaked not to spend too much time generating unnecessary output
that is not used, to help those who test on Windows where it would
not stop until it fills the pipe buffer due to lack of SIGPIPE.
* js/test-lib-windows-emulated-yes:
test-lib: limit the output of the yes utility
-rw-r--r-- | t/test-lib.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh index bd4b02e9d..51e4a88c3 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -907,9 +907,11 @@ yes () { y="$*" fi - while echo "$y" + i=0 + while test $i -lt 99 do - : + echo "$y" + i=$(($i+1)) done } |