summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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