From: Kefu Chai Date: Sat, 22 Aug 2020 08:11:28 +0000 (+0800) Subject: qa/workunits/rados: quote optional args X-Git-Tag: v16.1.0~1345^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F36760%2Fhead;p=ceph.git qa/workunits/rados: quote optional args otherwise they will be escaped by shell Signed-off-by: Kefu Chai --- diff --git a/qa/workunits/rados/test_python.sh b/qa/workunits/rados/test_python.sh index 792b505c5276..469fcb7aa326 100755 --- a/qa/workunits/rados/test_python.sh +++ b/qa/workunits/rados/test_python.sh @@ -1,5 +1,5 @@ #!/bin/sh -ex ceph osd pool create rbd -${PYTHON:-python3} -m nose -v $(dirname $0)/../../../src/test/pybind/test_rados.py $@ +${PYTHON:-python3} -m nose -v $(dirname $0)/../../../src/test/pybind/test_rados.py "$@" exit 0