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>
This commit is contained in:
Shawn O. Pearce
2009-10-30 17:47:46 -07:00
committed by Junio C Hamano
parent 859d1fb427
commit 024bb12566
3 changed files with 13 additions and 8 deletions

View File

@ -8,6 +8,11 @@ ErrorLog error.log
<IfModule !mod_log_config.c>
LoadModule log_config_module modules/mod_log_config.so
</IfModule>
<IfModule !mod_alias.c>
LoadModule alias_module modules/mod_alias.so
</IfModule>
Alias /dumb/ www/
<IfDefine SSL>
LoadModule ssl_module modules/mod_ssl.so
@ -26,7 +31,7 @@ SSLEngine On
LoadModule dav_fs_module modules/mod_dav_fs.so
DAVLockDB DAVLock
<Location />
<Location /dumb/>
Dav on
</Location>
</IfDefine>