mirror of
https://github.com/ceph/ceph
synced 2024-12-16 16:39:21 +00:00
qa/workunits: adjust path to ceph-helpers.sh
Signed-off-by: Sage Weil <sage@redhat.com>
This commit is contained in:
parent
dfd5af27d3
commit
841f3bdf92
@ -1,8 +1,8 @@
|
||||
#!/bin/bash
|
||||
if [ -f $(dirname $0)/../ceph-helpers-root.sh ]; then
|
||||
source $(dirname $0)/../ceph-helpers-root.sh
|
||||
if [ -f $(dirname $0)/../../standalone/ceph-helpers-root.sh ]; then
|
||||
source $(dirname $0)/../../standalone/ceph-helpers-root.sh
|
||||
else
|
||||
echo "$(dirname $0)/../ceph-helpers-root.sh does not exist."
|
||||
echo "$(dirname $0)/../../standalone/ceph-helpers-root.sh does not exist."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/bash -e
|
||||
|
||||
. $(dirname $0)/../ceph-helpers.sh
|
||||
. $(dirname $0)/../../standalone/ceph-helpers.sh
|
||||
|
||||
function list_tests()
|
||||
{
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/bash -ex
|
||||
|
||||
. $(dirname $0)/../ceph-helpers.sh
|
||||
. $(dirname $0)/../../standalone/ceph-helpers.sh
|
||||
|
||||
POOL=rbd
|
||||
IMAGE=testrbdnbd$$
|
||||
|
@ -4,7 +4,7 @@ TMPDIR=/tmp/rbd_test_admin_socket$$
|
||||
mkdir $TMPDIR
|
||||
trap "rm -fr $TMPDIR" 0
|
||||
|
||||
. $(dirname $0)/../ceph-helpers.sh
|
||||
. $(dirname $0)/../../standalone/ceph-helpers.sh
|
||||
|
||||
function expect_false()
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user