It really shouldn't, but "make test" seems very unhappy if the machine
doesn't have it, and I don't see anything that disables the tests for that
case..
Linus
From: Johannes Schindelin <hidden> Date: 2016-06-15 22:43:14
Hi,
On Tue, 5 Jun 2007, Linus Torvalds wrote:
It really shouldn't, but "make test" seems very unhappy if the machine
doesn't have it, and I don't see anything that disables the tests for
that case..
From: Johannes Schindelin <hidden> Date: 2016-06-15 22:43:14
Signed-off-by: Johannes Schindelin <redacted>
---
On Tue, 5 Jun 2007, Johannes Schindelin wrote:
> I seem to remember that I patched it already.
>
> http://thread.gmane.org/gmane.comp.version-control.git/46854/focus=46899
>
> Unfortunately, the patch was incorrect, and I forgot to do it
> properly. Will try this afternoon.
So, took me some more time. Sorry.
t/t5000-tar-tree.sh | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
@@ -108,6 +108,13 @@ test_expect_success \'git-archive --format=zip'\'git-archive --format=zip HEAD >d.zip'+$UNZIP-v2>/dev/null+if[$?-eq127];then+echo"Skipping ZIP tests, because unzip was not found"+test_done+exit+fi+ test_expect_success\'extract ZIP archive'\'(mkdir d && cd d && $UNZIP ../d.zip)'
From: René Scharfe <hidden> Date: 2016-06-15 22:43:15
unzip -v on (at least) Ubuntu prints a screenful of version info
to stdout. Get rid of it since we only want to know if unzip is
installed or not.
Signed-off-by: Rene Scharfe <redacted>
---
@@ -108,7 +108,7 @@ test_expect_success \'git-archive --format=zip'\'git-archive --format=zip HEAD >d.zip'-$UNZIP-v2>/dev/null+$UNZIP-v>/dev/null2>&1if[$?-eq127];thenecho"Skipping ZIP tests, because unzip was not found"test_done