Skip to content

Commit

Permalink
remote-helpers: test: simplify remote URLs
Browse files Browse the repository at this point in the history
No need to specify $PWD any more.

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Felipe Contreras authored and Junio C Hamano committed May 28, 2013
1 parent 531594e commit 5f5e92f
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
12 changes: 6 additions & 6 deletions contrib/remote-helpers/test-bzr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ test_expect_success 'cloning' '
bzr commit -m one
) &&
git clone "bzr::$PWD/bzrrepo" gitrepo &&
git clone "bzr::bzrrepo" gitrepo &&
check gitrepo one master
'

Expand Down Expand Up @@ -216,7 +216,7 @@ test_expect_success 'fetch utf-8 filenames' '
) &&
(
git clone "bzr::$PWD/bzrrepo" gitrepo &&
git clone "bzr::bzrrepo" gitrepo &&
cd gitrepo &&
git -c core.quotepath=false ls-files > ../actual
) &&
Expand All @@ -242,7 +242,7 @@ test_expect_success 'push utf-8 filenames' '
) &&
(
git clone "bzr::$PWD/bzrrepo" gitrepo &&
git clone "bzr::bzrrepo" gitrepo &&
cd gitrepo &&
echo test >> "ærø" &&
Expand All @@ -268,7 +268,7 @@ test_expect_success 'pushing a merge' '
bzr commit -m one
) &&
git clone "bzr::$PWD/bzrrepo" gitrepo &&
git clone "bzr::bzrrepo" gitrepo &&
(
cd bzrrepo &&
Expand Down Expand Up @@ -319,7 +319,7 @@ test_expect_success 'proper bzr repo' '
) &&
(
git clone "bzr::$PWD/bzrrepo" gitrepo &&
git clone "bzr::bzrrepo" gitrepo &&
cd gitrepo &&
git for-each-ref --format "%(refname:short)" refs/remotes/origin > ../actual
) &&
Expand All @@ -342,7 +342,7 @@ test_expect_success 'strip' '
bzr commit -m two
) &&
git clone "bzr::$PWD/bzrrepo" gitrepo &&
git clone "bzr::bzrrepo" gitrepo &&
(
cd bzrrepo &&
Expand Down
6 changes: 3 additions & 3 deletions contrib/remote-helpers/test-hg-bidi.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ fi

# clone to a git repo
git_clone () {
git clone -q "hg::$PWD/$1" $2
git clone -q "hg::$1" $2
}

# clone to an hg repo
Expand All @@ -31,7 +31,7 @@ hg_clone () {
hg init $2 &&
hg -R $2 bookmark -i master &&
cd $1 &&
git push -q "hg::$PWD/../$2" 'refs/tags/*:refs/tags/*' 'refs/heads/*:refs/heads/*'
git push -q "hg::../$2" 'refs/tags/*:refs/tags/*' 'refs/heads/*:refs/heads/*'
) &&

(cd $2 && hg -q update)
Expand All @@ -43,7 +43,7 @@ hg_push () {
cd $2
old=$(git symbolic-ref --short HEAD)
git checkout -q -b tmp &&
git fetch -q "hg::$PWD/../$1" 'refs/tags/*:refs/tags/*' 'refs/heads/*:refs/heads/*' &&
git fetch -q "hg::../$1" 'refs/tags/*:refs/tags/*' 'refs/heads/*:refs/heads/*' &&
git checkout -q $old &&
git branch -q -D tmp 2> /dev/null || true
)
Expand Down
6 changes: 3 additions & 3 deletions contrib/remote-helpers/test-hg-hg-git.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ fi

# clone to a git repo with git
git_clone_git () {
git clone -q "hg::$PWD/$1" $2
git clone -q "hg::$1" $2
}

# clone to an hg repo with git
Expand All @@ -36,7 +36,7 @@ hg_clone_git () {
hg init $2 &&
hg -R $2 bookmark -i master &&
cd $1 &&
git push -q "hg::$PWD/../$2" 'refs/tags/*:refs/tags/*' 'refs/heads/*:refs/heads/*'
git push -q "hg::../$2" 'refs/tags/*:refs/tags/*' 'refs/heads/*:refs/heads/*'
) &&

(cd $2 && hg -q update)
Expand All @@ -63,7 +63,7 @@ hg_push_git () {
cd $2
old=$(git symbolic-ref --short HEAD)
git checkout -q -b tmp &&
git fetch -q "hg::$PWD/../$1" 'refs/tags/*:refs/tags/*' 'refs/heads/*:refs/heads/*' &&
git fetch -q "hg::../$1" 'refs/tags/*:refs/tags/*' 'refs/heads/*:refs/heads/*' &&
git checkout -q $old &&
git branch -q -D tmp 2> /dev/null || true
)
Expand Down
14 changes: 7 additions & 7 deletions contrib/remote-helpers/test-hg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ test_expect_success 'cloning' '
hg commit -m zero
) &&
git clone "hg::$PWD/hgrepo" gitrepo &&
git clone "hg::hgrepo" gitrepo &&
check gitrepo zero master
'

Expand All @@ -67,12 +67,12 @@ test_expect_success 'cloning with branches' '
hg commit -m next
) &&
git clone "hg::$PWD/hgrepo" gitrepo &&
git clone "hg::hgrepo" gitrepo &&
check gitrepo next next &&
(cd hgrepo && hg checkout default) &&
git clone "hg::$PWD/hgrepo" gitrepo2 &&
git clone "hg::hgrepo" gitrepo2 &&
check gitrepo2 zero master
'

Expand All @@ -86,7 +86,7 @@ test_expect_success 'cloning with bookmarks' '
hg commit -m feature-a
) &&
git clone "hg::$PWD/hgrepo" gitrepo &&
git clone "hg::hgrepo" gitrepo &&
check gitrepo feature-a feature-a
'

Expand All @@ -98,7 +98,7 @@ test_expect_success 'cloning with detached head' '
hg update -r 0
) &&
git clone "hg::$PWD/hgrepo" gitrepo &&
git clone "hg::hgrepo" gitrepo &&
check gitrepo zero master
'

Expand All @@ -111,7 +111,7 @@ test_expect_success 'update bookmark' '
) &&
(
git clone "hg::$PWD/hgrepo" gitrepo &&
git clone "hg::hgrepo" gitrepo &&
cd gitrepo &&
git checkout --quiet devel &&
echo devel > content &&
Expand Down Expand Up @@ -155,7 +155,7 @@ test_expect_success 'authors' '
author_test kappa "test@example.com" "Unknown <test@example.com>"
) &&
git clone "hg::$PWD/hgrepo" gitrepo &&
git clone "hg::hgrepo" gitrepo &&
git --git-dir=gitrepo/.git log --reverse --format="%an <%ae>" > actual &&
test_cmp expected actual
Expand Down

0 comments on commit 5f5e92f

Please sign in to comment.