Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2010-01-19 08:18:41 +0300
committerJunio C Hamano <gitster@pobox.com>2010-01-19 08:18:41 +0300
commit18d97f5fedc4e464fa9b5d8096b5a9f7e42364fa (patch)
tree0bbfb740677e5318e2828ff6a7df9f48e78ea39d
parentf1be316ada93158507c315ee7948bb9e6007eb91 (diff)
parent8de65185e873d361ede4d6994ef257e4ac55f37d (diff)
Merge commit 'v1.6.4.4-8-g8de6518' into maint-1.6.4
* commit 'v1.6.4.4-8-g8de6518': Fix mis-backport of t7002
-rwxr-xr-xt/t7002-grep.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/t/t7002-grep.sh b/t/t7002-grep.sh
index 5f91d82297..7a5f28a326 100755
--- a/t/t7002-grep.sh
+++ b/t/t7002-grep.sh
@@ -25,13 +25,17 @@ test_expect_success setup '
echo foo mmap bar_mmap
echo foo_mmap bar mmap baz
} >file &&
+ echo vvv >v &&
echo ww w >w &&
echo x x xx x >x &&
echo y yy >y &&
echo zzz > z &&
mkdir t &&
echo test >t/t &&
- git add file w x y z t/t hello.c &&
+ echo vvv >t/v &&
+ mkdir t/a &&
+ echo vvv >t/a/v &&
+ git add . &&
test_tick &&
git commit -m initial
'