]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
qa: fix quoting of wget URLs
authorSage Weil <sage@inktank.com>
Mon, 18 Feb 2013 18:58:10 +0000 (10:58 -0800)
committerSage Weil <sage@inktank.com>
Mon, 18 Feb 2013 18:58:10 +0000 (10:58 -0800)
Broke this in ae0c2bbb50ab04467b5223a4f61bfca4b0830142.

Signed-off-by: Sage Weil <sage@inktank.com>
qa/run_xfstests_qemu.sh
qa/workunits/rados/test_python.sh
qa/workunits/rbd/test_librbd_python.sh

index 636f3bda81c63d6437c8106cea28785da59cd71d..08c136bdafa17ce3d907f8f656dd209e934a8364 100644 (file)
@@ -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
index cbc1ea17415f6e9dcc999d0bb3aaf84c5f4fc3b0..39595fe33298f4b847bb3f81e70d68c56fd6bdbe 100755 (executable)
@@ -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
index c3a0614d247341bf63b659e808428b15a513ae24..e975d17f50374ba17f40297ecb64c36f7d9191bc 100755 (executable)
@@ -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