From af93f562036d93fe9934c3da894917a27c3141a6 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Sat, 22 Aug 2020 16:11:28 +0800 Subject: [PATCH] qa/workunits/rados: quote optional args otherwise they will be escaped by shell Signed-off-by: Kefu Chai --- qa/workunits/rados/test_python.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.3