Re: [Patch v1 3/3] t5562: replace /dev/zero with a pipe from generate_zero_bytes

2019-02-13 Thread Junio C Hamano
Johannes Sixt writes: > Am 12.02.19 um 18:24 schrieb Junio C Hamano: diff --git a/t/t5562-http-backend-content-length.sh b/t/t5562-http-backend-content-length.sh @@ -143,14 +143,14 @@ test_expect_success GZIP 'push gzipped empty' ' test_expect_success 'CONTENT_LENGTH overflo

Re: [Patch v1 3/3] t5562: replace /dev/zero with a pipe from generate_zero_bytes

2019-02-12 Thread Johannes Sixt
Am 12.02.19 um 18:24 schrieb Junio C Hamano: >>> diff --git a/t/t5562-http-backend-content-length.sh >>> b/t/t5562-http-backend-content-length.sh >>> @@ -143,14 +143,14 @@ test_expect_success GZIP 'push gzipped empty' ' >>> test_expect_success 'CONTENT_LENGTH overflow ssite_t' ' >>> NOT_F

Re: [Patch v1 3/3] t5562: replace /dev/zero with a pipe from generate_zero_bytes

2019-02-12 Thread Junio C Hamano
Eric Sunshine writes: [jc: Summoning Dscho, J6t for their Windows expertise at the end] > On Sat, Feb 9, 2019 at 1:59 PM wrote: >> This change removes the dependency on /dev/zero with an equivalent pipe of > > Too many spaces between "equivalent" and "pipe". > >> deliberately NUL bytes. This a

Re: [Patch v1 3/3] t5562: replace /dev/zero with a pipe from generate_zero_bytes

2019-02-09 Thread Eric Sunshine
On Sat, Feb 9, 2019 at 1:59 PM wrote: > This change removes the dependency on /dev/zero with an equivalent pipe of Too many spaces between "equivalent" and "pipe". > deliberately NUL bytes. This allows tests to proceed where /dev/zero > does not exist. It wouldn't hurt to cite "NonStop" as an

[Patch v1 3/3] t5562: replace /dev/zero with a pipe from generate_zero_bytes

2019-02-09 Thread randall . s . becker
From: "Randall S. Becker" This change removes the dependency on /dev/zero with an equivalent pipe of deliberately NUL bytes. This allows tests to proceed where /dev/zero does not exist. Signed-off-by: Randall S. Becker --- t/t5562-http-backend-content-length.sh | 4 ++-- 1 file changed, 2 ins