about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2016-11-17 02:41:55 +0000
committerEric Wong <e@80x24.org>2016-11-17 02:47:09 +0000
commit072e33c3a4ead1f9cb5b40c462df426dbc1fa5ba (patch)
treec4c966805d3ab2b06ace3a135611cdf665163d16 /t
parent50e91f1ac0cdbd6da85f298b0e29c94018b5b989 (diff)
downloadrainbows-072e33c3a4ead1f9cb5b40c462df426dbc1fa5ba.tar.gz
Apparently RFC1738 designates hostname support for file:// and
curl historically had this wrong, but my current curl version
(7.38.0-4+deb8u5 from Debian 8) is stricter.  Anyways, this seems
to handle $PWD with spaces and possibly other strange
characters, so URL encoding here doesn't seem to be strictly
necessary.
Diffstat (limited to 't')
-rw-r--r--t/byte-range-common.sh17
1 files changed, 9 insertions, 8 deletions
diff --git a/t/byte-range-common.sh b/t/byte-range-common.sh
index 2c12a8b..3418394 100644
--- a/t/byte-range-common.sh
+++ b/t/byte-range-common.sh
@@ -34,14 +34,15 @@ check_content_range () {
 }
 
 t_begin "read random blob sha1s" && {
-        sha1_head=$(curl -sSff $range_head file://random_blob | rsha1)
-        sha1_tail=$(curl -sSff $range_tail file://random_blob | rsha1)
-        sha1_mid=$(curl -sSff $range_mid file://random_blob | rsha1)
-        sha1_n1=$(curl -sSff $range_n1 file://random_blob | rsha1)
-        sha1_n2=$(curl -sSff $range_n2 file://random_blob | rsha1)
-        sha1_1b_head=$(curl -sSff $range_1b_head file://random_blob | rsha1)
-        sha1_1b_tail=$(curl -sSff $range_1b_tail file://random_blob | rsha1)
-        sha1_1b_mid=$(curl -sSff $range_1b_mid file://random_blob | rsha1)
+        file="file://$(pwd)/random_blob"
+        sha1_head=$(curl -sSff $range_head $file | rsha1)
+        sha1_tail=$(curl -sSff $range_tail $file | rsha1)
+        sha1_mid=$(curl -sSff $range_mid $file | rsha1)
+        sha1_n1=$(curl -sSff $range_n1 $file | rsha1)
+        sha1_n2=$(curl -sSff $range_n2 $file | rsha1)
+        sha1_1b_head=$(curl -sSff $range_1b_head $file | rsha1)
+        sha1_1b_tail=$(curl -sSff $range_1b_tail $file | rsha1)
+        sha1_1b_mid=$(curl -sSff $range_1b_mid $file | rsha1)
         sha1_all=$(rsha1 < random_blob)
         echo "$sha1_all=$sha1_n1"
 }