diff options
author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2016-02-02 19:15:53 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-02-02 12:27:59 -0800 |
commit | 6129c930b22dc21e860dd1cddf73c6e45442e620 (patch) | |
tree | 37cfa5b15f56f0ad24f413ab6135077d6ce34400 /t/test-lib.sh | |
parent | 754884255bb580df159e58defa81cdd30b5c430c (diff) | |
download | git-6129c930b22dc21e860dd1cddf73c6e45442e620.tar.gz git-6129c930b22dc21e860dd1cddf73c6e45442e620.tar.xz |
test-lib: limit the output of the yes utility
On Windows, there is no SIGPIPE. A consequence of this is that the
upstream process of a pipe does not notice the death of the downstream
process until the pipe buffer is full and writing more data returns an
error. This behavior is the reason for an annoying delay during the
execution of t7610-mergetool.sh: There are a number of test cases where
'yes' is invoked upstream. Since the utility is basically an endless
loop it runs, on Windows, until the pipe buffer is full. This does take
a few seconds.
The test suite has its own implementation of 'yes'. Modify it to produce
only a limited amount of output that is sufficient for the test suite.
The amount chosen should be sufficiently high for any test case, assuming
that future test cases will not exaggerate their demands of input from
an upstream 'yes' invocation.
[j6t: commit message]
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/test-lib.sh')
-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 16c4d7b51..dfa29255d 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 } |