From: Junio C Hamano <gitster@pobox.com>
To: Lars Hjemli <hjemli@gmail.com>
Cc: Johannes Schindelin <Johannes.Schindelin@gmx.de>,
"Shawn O. Pearce" <spearce@spearce.org>,
git@vger.kernel.org
Subject: Re: [PATCH 3/4] Add tests for .git file
Date: Tue, 05 Feb 2008 19:25:55 -0800 [thread overview]
Message-ID: <7vfxw66a0s.fsf@gitster.siamese.dyndns.org> (raw)
In-Reply-To: <1202158761-31211-4-git-send-email-hjemli@gmail.com> (Lars Hjemli's message of "Mon, 4 Feb 2008 21:59:20 +0100")
Lars Hjemli <hjemli@gmail.com> writes:
> Verify that the basic plumbing works when .git is a file pointing at
> the real git directory.
>
> Signed-off-by: Lars Hjemli <hjemli@gmail.com>
> ---
> t/t0002-gitfile.sh | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++++
> 1 files changed, 71 insertions(+), 0 deletions(-)
> create mode 100755 t/t0002-gitfile.sh
>
> diff --git a/t/t0002-gitfile.sh b/t/t0002-gitfile.sh
> new file mode 100755
> index 0000000..f8f39e6
> --- /dev/null
> +++ b/t/t0002-gitfile.sh
> @@ -0,0 +1,71 @@
> +#!/bin/sh
> +
> +test_description='.git file
> +
> +Verify that plumbing commands work when .git is a file
> +'
> +. ./test-lib.sh
> +
> +chkfile() {
> + D=$(echo $1 | cut -b 1-2) &&
> + F=$(echo $1 | cut -b 3-40) &&
> + if test ! -f $REAL/objects/$D/$F
P=$(echo $1 | sed -e 's|\(..\)\(.*\)|\1/\2\|') &&
if test ! -f "$REAL/objects/$P"
...
Although it probably is more efficient to do this with one
process, s/cut/sed/ is mostly a style issue.
Be careful with quoting. $REAL might contain a $IFS whitespace
as you grabbed it from $(pwd)...
> +test_expect_success 'setup' '
> + REAL=$(pwd)/.real &&
> + mv .git $REAL &&
> + echo "gitdir: $REAL" >.git
> +'
> ...
> +test_expect_success 'check update-index' '
> + if test -f $REAL/index
> + then
> + echo "Hmm, $REAL/index exists?"
> + false
> + fi &&
> + rm -rf $REAL/objects/* &&
... and it matters especially if you do this ;-)
next prev parent reply other threads:[~2008-02-06 3:26 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-02-04 20:59 [PATCH 0/4] Introduce the .git-file Lars Hjemli
2008-02-04 20:59 ` [PATCH 1/4] Add platform-independent .git "symlink" Lars Hjemli
2008-02-04 20:59 ` [PATCH 2/4] Document the .git-file Lars Hjemli
2008-02-04 20:59 ` [PATCH 3/4] Add tests for .git file Lars Hjemli
2008-02-04 20:59 ` [PATCH 4/4] git-submodule: prepare for the .git-file Lars Hjemli
2008-02-04 22:23 ` Mike Hommey
2008-02-04 22:44 ` Lars Hjemli
2008-02-06 3:25 ` Junio C Hamano [this message]
2008-02-06 7:56 ` [PATCH 3/4 v2] Add tests for .git file Lars Hjemli
2008-02-06 8:40 ` Junio C Hamano
2008-02-06 9:30 ` Lars Hjemli
2008-02-06 10:13 ` Junio C Hamano
2008-02-06 10:35 ` Lars Hjemli
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=7vfxw66a0s.fsf@gitster.siamese.dyndns.org \
--to=gitster@pobox.com \
--cc=Johannes.Schindelin@gmx.de \
--cc=git@vger.kernel.org \
--cc=hjemli@gmail.com \
--cc=spearce@spearce.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.