From: Jason Dillaman Date: Thu, 18 Apr 2019 12:55:19 +0000 (-0400) Subject: qa/tasks/rbd_fio: fixed missing delimiter between 'cd' and 'configure' X-Git-Tag: v13.2.6~34^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=e9dd56ee1f2611fbf6adfd90e37479fd44b6c7ca;p=ceph.git qa/tasks/rbd_fio: fixed missing delimiter between 'cd' and 'configure' Signed-off-by: Jason Dillaman (cherry picked from commit 83c11efb98f28c19f70eac04a6a84fe820f968cb) --- diff --git a/qa/tasks/rbd_fio.py b/qa/tasks/rbd_fio.py index 1d153a264203..2b520f53fc68 100644 --- a/qa/tasks/rbd_fio.py +++ b/qa/tasks/rbd_fio.py @@ -207,8 +207,8 @@ def run_fio(remote, config, rbd_test_dir): fio = "https://github.com/axboe/fio/archive/fio-" + fio_version + ".tar.gz" remote.run(args=['mkdir', run.Raw(rbd_test_dir),]) remote.run(args=['cd' , run.Raw(rbd_test_dir), - run.Raw(';'), 'wget' , fio , run.Raw(';'), run.Raw('tar -xvf fio*tar.gz'), run.Raw(';'), - run.Raw('cd fio-fio*'), 'configure', run.Raw(';') ,'make']) + run.Raw(';'), 'wget', fio, run.Raw(';'), run.Raw('tar -xvf fio*tar.gz'), run.Raw(';'), + run.Raw('cd fio-fio*'), run.Raw(';'), './configure', run.Raw(';'), 'make']) remote.run(args=['ceph', '-s']) remote.run(args=[run.Raw('{tdir}/fio-fio-{v}/fio --showcmd {f}'.format(tdir=rbd_test_dir,v=fio_version,f=fio_config.name))]) remote.run(args=['sudo', run.Raw('{tdir}/fio-fio-{v}/fio {f}'.format(tdir=rbd_test_dir,v=fio_version,f=fio_config.name))])