From 3e25a080bcdf63a83aa55af1182f1fd90e5ac23d Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Fri, 30 Oct 2020 14:54:44 -0700 Subject: [PATCH] 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 --- qa/suites/fs/functional/tasks/truncate_delay.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qa/suites/fs/functional/tasks/truncate_delay.yaml b/qa/suites/fs/functional/tasks/truncate_delay.yaml index b47b5656914..acd1a5a04db 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 -- 2.39.5