summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2017-07-16 06:45:32 -0400
committerJunio C Hamano <gitster@pobox.com>2017-07-17 14:55:43 -0700
commitf7f6dc340ed4eb2bddc41993e112f8f18fcc1598 (patch)
tree4c44441f54672b63d29b137eeff9c69edc57442d
parent08f9c32463bf9e578acb7ac5f77afd36e803c6bc (diff)
downloadgit-jk/test-copy-bytes-fix.tar.gz
t: handle EOF in test_copy_bytes()jk/test-copy-bytes-fix
The test_copy_bytes() function claims to read up to N bytes, or until it gets EOF. But we never handle EOF in our loop, and a short input will cause perl to go into an infinite loop of read() getting zero bytes. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--t/test-lib-functions.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/t/test-lib-functions.sh b/t/test-lib-functions.sh
index db622c3555..50a9a1d1c4 100644
--- a/t/test-lib-functions.sh
+++ b/t/test-lib-functions.sh
@@ -999,6 +999,7 @@ test_copy_bytes () {
my $s;
my $nread = sysread(STDIN, $s, $len);
die "cannot read: $!" unless defined($nread);
+ last unless $nread;
print $s;
$len -= $nread;
}