* [PATCH] Use the modern syntax of git-diff-files in t2002-checkout-cache-u.sh
@ 2008-04-27 11:31 Alex Riesen
2008-04-27 17:21 ` Junio C Hamano
0 siblings, 1 reply; 3+ messages in thread
From: Alex Riesen @ 2008-04-27 11:31 UTC (permalink / raw)
To: git; +Cc: Junio C Hamano
As a nice side effect it also fixes t2002-checkout-cache-u.sh on FreeBSD 4,
/bin/sh of which has problems interpreting "! command" construction.
Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
---
To be honest - it was the other way around: I wanted to fix the test
on FreeBSD, but ended up using --exit-code and test_must_fail
t/t2002-checkout-cache-u.sh | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/t/t2002-checkout-cache-u.sh b/t/t2002-checkout-cache-u.sh
index 0f441bc..70361c8 100755
--- a/t/t2002-checkout-cache-u.sh
+++ b/t/t2002-checkout-cache-u.sh
@@ -21,13 +21,13 @@ test_expect_success \
rm -f path0 &&
git read-tree $t &&
git checkout-index -f -a &&
-! git diff-files | diff - /dev/null'
+test_must_fail git diff-files --exit-code'
test_expect_success \
'with -u, git checkout-index picks up stat information from new files.' '
rm -f path0 &&
git read-tree $t &&
git checkout-index -u -f -a &&
-git diff-files | diff - /dev/null'
+git diff-files --exit-code'
test_done
--
1.5.5.1.113.g4af4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] Use the modern syntax of git-diff-files in t2002-checkout-cache-u.sh
2008-04-27 11:31 [PATCH] Use the modern syntax of git-diff-files in t2002-checkout-cache-u.sh Alex Riesen
@ 2008-04-27 17:21 ` Junio C Hamano
2008-04-27 17:49 ` Alex Riesen
0 siblings, 1 reply; 3+ messages in thread
From: Junio C Hamano @ 2008-04-27 17:21 UTC (permalink / raw)
To: Alex Riesen; +Cc: git
Alex Riesen <raa.lkml@gmail.com> writes:
> As a nice side effect it also fixes t2002-checkout-cache-u.sh on FreeBSD 4,
> /bin/sh of which has problems interpreting "! command" construction.
>
> Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
> ---
>
> To be honest - it was the other way around: I wanted to fix the test
> on FreeBSD, but ended up using --exit-code and test_must_fail
Do you mean /bin/sh there misinterprets "! cmd1 | cmd2" as "(! cmd1) |
cmd2" and always returns true or something silly like that? I see a few
other places in t3400, t3700, t5302, t7002, etc. that use that construct
without an obvious workaround "! (cmd1 | cmd2)" which t0030 uses.
> test_expect_success \
> 'with -u, git checkout-index picks up stat information from new files.' '
> rm -f path0 &&
> git read-tree $t &&
> git checkout-index -u -f -a &&
> -git diff-files | diff - /dev/null'
> +git diff-files --exit-code'
Is this something FreeBSD 4 has trouble with as well (not a request to
drop this hunk but asking for info)?
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Use the modern syntax of git-diff-files in t2002-checkout-cache-u.sh
2008-04-27 17:21 ` Junio C Hamano
@ 2008-04-27 17:49 ` Alex Riesen
0 siblings, 0 replies; 3+ messages in thread
From: Alex Riesen @ 2008-04-27 17:49 UTC (permalink / raw)
To: Junio C Hamano; +Cc: git
Junio C Hamano, Sun, Apr 27, 2008 19:21:30 +0200:
> Alex Riesen <raa.lkml@gmail.com> writes:
>
> > As a nice side effect it also fixes t2002-checkout-cache-u.sh on FreeBSD 4,
> > /bin/sh of which has problems interpreting "! command" construction.
> >
> > Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
> > ---
> >
> > To be honest - it was the other way around: I wanted to fix the test
> > on FreeBSD, but ended up using --exit-code and test_must_fail
>
> Do you mean /bin/sh there misinterprets "! cmd1 | cmd2" as "(! cmd1) |
> cmd2" and always returns true or something silly like that? I see a few
> other places in t3400, t3700, t5302, t7002, etc. that use that construct
> without an obvious workaround "! (cmd1 | cmd2)" which t0030 uses.
Yes. That one was just a place I very slowly got to (I have not much
motivation and only one _very remote_ (and production) machine to try
things on).
> > test_expect_success \
> > 'with -u, git checkout-index picks up stat information from new files.' '
> > rm -f path0 &&
> > git read-tree $t &&
> > git checkout-index -u -f -a &&
> > -git diff-files | diff - /dev/null'
> > +git diff-files --exit-code'
>
> Is this something FreeBSD 4 has trouble with as well (not a request to
> drop this hunk but asking for info)?
No, this is just the same file and similar construction (use external
diff just to figure out if there are any differences). This is why I
(re)named the patch for "modern syntax". It is named "make t2002 work
on FreeBSD4" in my tree.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-04-27 17:49 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-04-27 11:31 [PATCH] Use the modern syntax of git-diff-files in t2002-checkout-cache-u.sh Alex Riesen
2008-04-27 17:21 ` Junio C Hamano
2008-04-27 17:49 ` Alex Riesen
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).