aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2012-10-10 14:57:09 -0700
committerJunio C Hamano <gitster@pobox.com>2012-10-10 14:57:09 -0700
commitb7804cf2277af57785ca0a1686bf6571e711a9ca (patch)
treed0603544da9b0bdc991cf6b4a4d23ab930847303 /t
parent4321fe0b5400861b30503a8663669e96dfac0d50 (diff)
parentd4a7ffaae3fa3302a73e00dab01b80c4bfd17cdb (diff)
downloadgit-b7804cf2277af57785ca0a1686bf6571e711a9ca.tar.gz
git-b7804cf2277af57785ca0a1686bf6571e711a9ca.tar.xz
Merge branch 'bw/cp-a-is-gnuism'
* bw/cp-a-is-gnuism: tests: "cp -a" is a GNUism
Diffstat (limited to 't')
-rwxr-xr-xt/t5400-send-pack.sh2
-rwxr-xr-xt/t5550-http-fetch.sh2
-rwxr-xr-xt/t5800-remote-helpers.sh2
3 files changed, 3 insertions, 3 deletions
diff --git a/t/t5400-send-pack.sh b/t/t5400-send-pack.sh
index 78ab17793..129fc88bd 100755
--- a/t/t5400-send-pack.sh
+++ b/t/t5400-send-pack.sh
@@ -159,7 +159,7 @@ test_expect_success 'receive-pack runs auto-gc in remote repo' '
git commit -a -m "Second commit" &&
git repack
) &&
- cp -a parent child &&
+ cp -R parent child &&
(
# Set the child to auto-pack if more than one pack exists
cd child &&
diff --git a/t/t5550-http-fetch.sh b/t/t5550-http-fetch.sh
index 16ef0419e..80d20c876 100755
--- a/t/t5550-http-fetch.sh
+++ b/t/t5550-http-fetch.sh
@@ -22,7 +22,7 @@ test_expect_success 'setup repository' '
'
test_expect_success 'create http-accessible bare repository with loose objects' '
- cp -a .git "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
+ cp -R .git "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
(cd "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
git config core.bare true &&
mkdir -p hooks &&
diff --git a/t/t5800-remote-helpers.sh b/t/t5800-remote-helpers.sh
index 570233451..e7dc668ce 100755
--- a/t/t5800-remote-helpers.sh
+++ b/t/t5800-remote-helpers.sh
@@ -76,7 +76,7 @@ test_expect_success 'pushing to local repo' '
# git-remote-testgit, but is too slow to leave in for general use.
: test_expect_success 'racily pushing to local repo' '
test_when_finished "rm -rf server2 localclone2" &&
- cp -a server server2 &&
+ cp -R server server2 &&
git clone "testgit::${PWD}/server2" localclone2 &&
(cd localclone2 &&
echo content >>file &&