2011-11-11 01:01:04 +00:00
|
|
|
#!/bin/sh -ex
|
|
|
|
|
2012-07-13 16:42:20 +00:00
|
|
|
CEPH_REF=${CEPH_REF:-master}
|
2013-02-15 17:20:14 +00:00
|
|
|
#wget -q https://raw.github.com/ceph/ceph/$CEPH_REF/src/test/pybind/test_rados.py
|
2013-02-18 18:58:10 +00:00
|
|
|
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"
|
2011-11-11 01:01:04 +00:00
|
|
|
nosetests -v test_rados
|
|
|
|
exit 0
|