From: Patrick Donnelly Date: Fri, 30 Oct 2020 21:54:44 +0000 (-0700) Subject: qa: fix mount directory X-Git-Tag: v16.1.0~689^2~10 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=3e25a080bcdf63a83aa55af1182f1fd90e5ac23d;p=ceph.git qa: fix mount directory Otherwise we get this error: 2020-10-30T03:57:44.256 INFO:teuthology.run_tasks:Running task exec... 2020-10-30T03:57:44.265 INFO:teuthology.task.exec:Executing custom commands... 2020-10-30T03:57:44.266 INFO:teuthology.task.exec:Running commands on role client.0 host ubuntu@smithi095.front.sepia.ceph.com 2020-10-30T03:57:44.266 INFO:teuthology.orchestra.run.smithi095:> sudo TESTDIR=/home/ubuntu/cephtest bash -c 'cd $TESTDIR/mnt.* && dd if=/dev/zero of=./foo count=100' 2020-10-30T03:57:44.380 INFO:teuthology.orchestra.run.smithi095.stderr:bash: line 0: cd: too many arguments From: /ceph/teuthology-archive/pdonnell-2020-10-30_02:26:51-fs-master-distro-basic-smithi/5573179/teuthology.log Fixes: https://tracker.ceph.com/issues/23718 Signed-off-by: Patrick Donnelly --- diff --git a/qa/suites/fs/functional/tasks/truncate_delay.yaml b/qa/suites/fs/functional/tasks/truncate_delay.yaml index b47b56569146..acd1a5a04dbd 100644 --- a/qa/suites/fs/functional/tasks/truncate_delay.yaml +++ b/qa/suites/fs/functional/tasks/truncate_delay.yaml @@ -9,6 +9,6 @@ overrides: tasks: - exec: client.0: - - cd $TESTDIR/mnt.* && dd if=/dev/zero of=./foo count=100 + - cd $TESTDIR/mnt.0 && dd if=/dev/zero of=./foo count=100 - sleep 2 - - cd $TESTDIR/mnt.* && truncate --size 0 ./foo + - cd $TESTDIR/mnt.0 && truncate --size 0 ./foo