@@ -17,100 +17,100 @@ test_expect_success setup '
1717 commit1=$(echo modify | git commit-tree $tree1 -p $commit0) &&
1818 git update-ref refs/heads/master $commit0 &&
1919 git update-ref refs/heads/tofail $commit1 &&
20- git clone ./. victim &&
21- GIT_DIR=victim/ .git git update-ref refs/heads/tofail $commit1 &&
20+ git clone --bare ./. victim.git &&
21+ GIT_DIR=victim.git git update-ref refs/heads/tofail $commit1 &&
2222 git update-ref refs/heads/master $commit1 &&
2323 git update-ref refs/heads/tofail $commit0
2424'
2525
26- cat > victim/ .git/hooks/pre-receive << 'EOF '
26+ cat > victim.git/hooks/pre-receive << 'EOF '
2727#!/bin/sh
2828printf %s "$@" >>$GIT_DIR/pre-receive.args
2929cat - >$GIT_DIR/pre-receive.stdin
3030echo STDOUT pre-receive
3131echo STDERR pre-receive >&2
3232EOF
33- chmod u+x victim/ .git/hooks/pre-receive
33+ chmod u+x victim.git/hooks/pre-receive
3434
35- cat > victim/ .git/hooks/update << 'EOF '
35+ cat > victim.git/hooks/update << 'EOF '
3636#!/bin/sh
3737echo "$@" >>$GIT_DIR/update.args
3838read x; printf %s "$x" >$GIT_DIR/update.stdin
3939echo STDOUT update $1
4040echo STDERR update $1 >&2
4141test "$1" = refs/heads/master || exit
4242EOF
43- chmod u+x victim/ .git/hooks/update
43+ chmod u+x victim.git/hooks/update
4444
45- cat > victim/ .git/hooks/post-receive << 'EOF '
45+ cat > victim.git/hooks/post-receive << 'EOF '
4646#!/bin/sh
4747printf %s "$@" >>$GIT_DIR/post-receive.args
4848cat - >$GIT_DIR/post-receive.stdin
4949echo STDOUT post-receive
5050echo STDERR post-receive >&2
5151EOF
52- chmod u+x victim/ .git/hooks/post-receive
52+ chmod u+x victim.git/hooks/post-receive
5353
54- cat > victim/ .git/hooks/post-update << 'EOF '
54+ cat > victim.git/hooks/post-update << 'EOF '
5555#!/bin/sh
5656echo "$@" >>$GIT_DIR/post-update.args
5757read x; printf %s "$x" >$GIT_DIR/post-update.stdin
5858echo STDOUT post-update
5959echo STDERR post-update >&2
6060EOF
61- chmod u+x victim/ .git/hooks/post-update
61+ chmod u+x victim.git/hooks/post-update
6262
6363test_expect_success push '
64- test_must_fail git send-pack --force ./victim/ .git \
64+ test_must_fail git send-pack --force ./victim.git \
6565 master tofail >send.out 2>send.err
6666'
6767
6868test_expect_success ' updated as expected' '
69- test $(GIT_DIR=victim/ .git git rev-parse master) = $commit1 &&
70- test $(GIT_DIR=victim/ .git git rev-parse tofail) = $commit1
69+ test $(GIT_DIR=victim.git git rev-parse master) = $commit1 &&
70+ test $(GIT_DIR=victim.git git rev-parse tofail) = $commit1
7171'
7272
7373test_expect_success ' hooks ran' '
74- test -f victim/ .git/pre-receive.args &&
75- test -f victim/ .git/pre-receive.stdin &&
76- test -f victim/ .git/update.args &&
77- test -f victim/ .git/update.stdin &&
78- test -f victim/ .git/post-receive.args &&
79- test -f victim/ .git/post-receive.stdin &&
80- test -f victim/ .git/post-update.args &&
81- test -f victim/ .git/post-update.stdin
74+ test -f victim.git/pre-receive.args &&
75+ test -f victim.git/pre-receive.stdin &&
76+ test -f victim.git/update.args &&
77+ test -f victim.git/update.stdin &&
78+ test -f victim.git/post-receive.args &&
79+ test -f victim.git/post-receive.stdin &&
80+ test -f victim.git/post-update.args &&
81+ test -f victim.git/post-update.stdin
8282'
8383
8484test_expect_success ' pre-receive hook input' '
8585 (echo $commit0 $commit1 refs/heads/master;
8686 echo $commit1 $commit0 refs/heads/tofail
87- ) | test_cmp - victim/ .git/pre-receive.stdin
87+ ) | test_cmp - victim.git/pre-receive.stdin
8888'
8989
9090test_expect_success ' update hook arguments' '
9191 (echo refs/heads/master $commit0 $commit1;
9292 echo refs/heads/tofail $commit1 $commit0
93- ) | test_cmp - victim/ .git/update.args
93+ ) | test_cmp - victim.git/update.args
9494'
9595
9696test_expect_success ' post-receive hook input' '
9797 echo $commit0 $commit1 refs/heads/master |
98- test_cmp - victim/ .git/post-receive.stdin
98+ test_cmp - victim.git/post-receive.stdin
9999'
100100
101101test_expect_success ' post-update hook arguments' '
102102 echo refs/heads/master |
103- test_cmp - victim/ .git/post-update.args
103+ test_cmp - victim.git/post-update.args
104104'
105105
106106test_expect_success ' all hook stdin is /dev/null' '
107- ! test -s victim/ .git/update.stdin &&
108- ! test -s victim/ .git/post-update.stdin
107+ ! test -s victim.git/update.stdin &&
108+ ! test -s victim.git/post-update.stdin
109109'
110110
111111test_expect_success ' all *-receive hook args are empty' '
112- ! test -s victim/ .git/pre-receive.args &&
113- ! test -s victim/ .git/post-receive.args
112+ ! test -s victim.git/pre-receive.args &&
113+ ! test -s victim.git/post-receive.args
114114'
115115
116116test_expect_success ' send-pack produced no output' '
0 commit comments