From: "Torsten Bögershausen" <tboegi@web.de>
To: Jeff King <peff@peff.net>
Cc: Eric Sunshine <sunshine@sunshineco.com>,
Junio C Hamano <gitster@pobox.com>,
Git List <git@vger.kernel.org>, Max Kirillov <max@max630.net>
Subject: Re: t5562: gzip -k is not portable
Date: Wed, 20 Jun 2018 08:13:06 +0200 [thread overview]
Message-ID: <20180620061306.GA7813@tor.lan> (raw)
In-Reply-To: <20180619205310.GA30710@sigill.intra.peff.net>
On Tue, Jun 19, 2018 at 04:53:10PM -0400, Jeff King wrote:
> On Tue, Jun 19, 2018 at 10:40:16PM +0200, Torsten Bögershausen wrote:
>
> >
> >
> > On 06/19/2018 08:22 PM, Eric Sunshine wrote:
> > > On Tue, Jun 19, 2018 at 2:06 PM Junio C Hamano <gitster@pobox.com> wrote:
> > > > Torsten Bögershausen <tboegi@web.de> writes:
> > > > > t5562 fails here under MacOS:
> > > > > "gzip -k" is not portable.
> > > Very odd. Stock /usr/bin/gzip on my MacOS 10.12.6 _does_ recognize -k,
> > > and the test does pass.
> >
> > This is the test box running Mac OS X 10.6 speaking.
> > The -c seems to need even -f.
> > But this doesn't work either:
> >
> > gzip 1.3.12
> > Copyright (C) 2007 Free Software Foundation, Inc.
> > Copyright (C) 1993 Jean-loup Gailly.
> > This is free software. You may redistribute copies of it under the terms of
> > the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.
> > There is NO WARRANTY, to the extent permitted by law.
>
> Ah, that's it. "-k" came about in gzip v1.6. That's 5 years old, but
> obviously some people are still running it.
>
> "-c" goes back quite a while and should be safe, I think.
>
> > expecting success:
> > gzip -f -c fetch_body >fetch_body.gz &&
> > test_copy_bytes 10 <fetch_body.gz >fetch_body.gz.trunc &&
> > gzip -f -c push_body >push_body,gz &&
> > test_copy_bytes 10 <push_body.gz >push_body.gz.trunc
> >
> > ./test-lib.sh: line 632: push_body.gz: No such file or directory
>
> Typo in the ">" redirect (comma instead of period)?
>
> -Peff
Good eyes, thanks.
The "-f -c" combo works:
- gzip -k fetch_body &&
+ gzip -f -c fetch_body >fetch_body.gz &&
test_copy_bytes 10 <fetch_body.gz >fetch_body.gz.trunc &&
- gzip -k push_body &&
+ gzip -f -c push_body >push_body.gz &&
next prev parent reply other threads:[~2018-06-20 6:13 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-19 17:25 t5562: gzip -k is not portable Torsten Bögershausen
2018-06-19 18:06 ` Junio C Hamano
2018-06-19 18:22 ` Eric Sunshine
2018-06-19 20:40 ` Torsten Bögershausen
2018-06-19 20:53 ` Rodrigo Campos
2018-06-19 20:53 ` Jeff King
2018-06-20 6:13 ` Torsten Bögershausen [this message]
2018-06-20 12:40 ` Jeff King
2018-06-20 15:41 ` Torsten Bögershausen
2018-06-19 20:48 ` Rodrigo Campos
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180620061306.GA7813@tor.lan \
--to=tboegi@web.de \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=max@max630.net \
--cc=peff@peff.net \
--cc=sunshine@sunshineco.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).