summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSage Weil <sage@inktank.com>2013-02-18 10:58:10 -0800
committerSage Weil <sage@inktank.com>2013-02-18 10:58:10 -0800
commit1a7a57ac8fbfb998960a80f8bc167ff08771a34c (patch)
treea2e981910caf7a394322182a8fbeb6ed1d67780c
parent3612ed617e3ffa92e64dae2d61045c437213b87a (diff)
downloadceph-1a7a57ac8fbfb998960a80f8bc167ff08771a34c.tar.gz
qa: fix quoting of wget URLs
Broke this in ae0c2bbb50ab04467b5223a4f61bfca4b0830142. Signed-off-by: Sage Weil <sage@inktank.com>
-rw-r--r--qa/run_xfstests_qemu.sh2
-rwxr-xr-xqa/workunits/rados/test_python.sh4
-rwxr-xr-xqa/workunits/rbd/test_librbd_python.sh4
3 files changed, 5 insertions, 5 deletions
diff --git a/qa/run_xfstests_qemu.sh b/qa/run_xfstests_qemu.sh
index 636f3bda81c..08c136bdafa 100644
--- a/qa/run_xfstests_qemu.sh
+++ b/qa/run_xfstests_qemu.sh
@@ -2,7 +2,7 @@
mkdir /tmp/cephtest
#wget https://raw.github.com/ceph/ceph/master/qa/run_xfstests.sh
-wget https://ceph.com/git/?p=ceph.git;a=blob_plain;f=qa/run_xfstests.sh
+wget -O run_xfstests.sh 'https://ceph.com/git/?p=ceph.git;a=blob_plain;f=qa/run_xfstests.sh'
chmod +x run_xfstests.sh
# tests excluded fail in the current testing vm regardless of whether
# rbd is used
diff --git a/qa/workunits/rados/test_python.sh b/qa/workunits/rados/test_python.sh
index cbc1ea17415..39595fe3329 100755
--- a/qa/workunits/rados/test_python.sh
+++ b/qa/workunits/rados/test_python.sh
@@ -2,7 +2,7 @@
CEPH_REF=${CEPH_REF:-master}
#wget -q https://raw.github.com/ceph/ceph/$CEPH_REF/src/test/pybind/test_rados.py
-wget -q https://ceph.com/git/?p=ceph.git;a=blob_plain;hb=$CEPH_REF;f=src/test/pybind/test_rados.py || \
- wget -q https://ceph.com/git/?p=ceph.git;a=blob_plain;hb=ref/heads/$CEPH_REF;f=src/test/pybind/test_rados.py
+wget -O test_rados.py "https://ceph.com/git/?p=ceph.git;a=blob_plain;hb=$CEPH_REF;f=src/test/pybind/test_rados.py" || \
+ wget -O test_rados.py "https://ceph.com/git/?p=ceph.git;a=blob_plain;hb=ref/heads/$CEPH_REF;f=src/test/pybind/test_rados.py"
nosetests -v test_rados
exit 0
diff --git a/qa/workunits/rbd/test_librbd_python.sh b/qa/workunits/rbd/test_librbd_python.sh
index c3a0614d247..e975d17f503 100755
--- a/qa/workunits/rbd/test_librbd_python.sh
+++ b/qa/workunits/rbd/test_librbd_python.sh
@@ -2,7 +2,7 @@
CEPH_REF=${CEPH_REF:-master}
#wget -q https://raw.github.com/ceph/ceph/$CEPH_REF/src/test/pybind/test_rbd.py
-wget -q https://ceph.com/git/?p=ceph.git;a=blob_plain;hb=$CEPH_REF;f=src/test/pybind/test_rbd.py || \
- wget -q https://ceph.com/git/?p=ceph.git;a=blob_plain;hb=ref/heads/$CEPH_REF;f=src/test/pybind/test_rbd.py
+wget -O test_rbd.py "https://ceph.com/git/?p=ceph.git;a=blob_plain;hb=$CEPH_REF;f=src/test/pybind/test_rbd.py" || \
+ wget -O test_rbd.py "https://ceph.com/git/?p=ceph.git;a=blob_plain;hb=ref/heads/$CEPH_REF;f=src/test/pybind/test_rbd.py"
nosetests -v -e '.*test_remove_with_watcher' test_rbd
exit 0