From: Sage Weil Date: Mon, 18 Feb 2013 18:58:10 +0000 (-0800) Subject: qa: fix quoting of wget URLs X-Git-Tag: v0.58~38 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=1a7a57ac8fbfb998960a80f8bc167ff08771a34c;p=ceph.git qa: fix quoting of wget URLs Broke this in ae0c2bbb50ab04467b5223a4f61bfca4b0830142. Signed-off-by: Sage Weil --- diff --git a/qa/run_xfstests_qemu.sh b/qa/run_xfstests_qemu.sh index 636f3bda81c6..08c136bdafa1 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 cbc1ea17415f..39595fe33298 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 c3a0614d2473..e975d17f5037 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