summaryrefslogtreecommitdiff
path: root/t/t5550-http-fetch.sh
diff options
context:
space:
mode:
authorShawn O. Pearce <spearce@spearce.org>2009-10-31 00:47:46 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-11-05 01:58:16 (GMT)
commit024bb1256627219671a0924b195582b6e049ca87 (patch)
tree384e51686d5fe3eb3b6818b316910094de2fb2df /t/t5550-http-fetch.sh
parent859d1fb427ca79d3c70a3806c892e4dd148701bf (diff)
downloadgit-024bb1256627219671a0924b195582b6e049ca87.zip
git-024bb1256627219671a0924b195582b6e049ca87.tar.gz
git-024bb1256627219671a0924b195582b6e049ca87.tar.bz2
http tests: use /dumb/ URL prefix
To clarify what part of the HTTP transprot is being tested we change the URLs used by existing tests to include /dumb/ at the start, indicating they use the non-Git aware code paths. Signed-off-by: Shawn O. Pearce <spearce@spearce.org> CC: Tay Ray Chuan <rctay89@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5550-http-fetch.sh')
-rwxr-xr-xt/t5550-http-fetch.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t5550-http-fetch.sh b/t/t5550-http-fetch.sh
index 0e69324..776057c 100755
--- a/t/t5550-http-fetch.sh
+++ b/t/t5550-http-fetch.sh
@@ -30,7 +30,7 @@ test_expect_success 'create http-accessible bare repository' '
'
test_expect_success 'clone http repository' '
- git clone $HTTPD_URL/repo.git clone &&
+ git clone $HTTPD_URL/dumb/repo.git clone &&
test_cmp file clone/file
'
@@ -58,7 +58,7 @@ test_expect_success 'fetch packed objects' '
cd "$HTTPD_DOCUMENT_ROOT_PATH"/repo_pack.git &&
git --bare repack &&
git --bare prune-packed &&
- git clone $HTTPD_URL/repo_pack.git
+ git clone $HTTPD_URL/dumb/repo_pack.git
'
stop_httpd