qa/cephfs: set omit_sudo to False in test_acls.py

When running "sudo ./check generic/099" in test_acls.py's test method
named test_acls(), set omit_sudo to False because without it
vstart_runner.py will remove "sudo" from command arguments and so the
command will fail unnecessarily.

Fixes: https://tracker.ceph.com/issues/55374
Signed-off-by: Rishabh Dave <ridave@redhat.com>
This commit is contained in:
Rishabh Dave 2022-04-18 21:52:18 +05:30
parent b60b73c0fe
commit 1423f959e8

View File

@ -23,5 +23,5 @@ class TestACLs(XFSTestsDev):
self.mount_a.client_remote.run(args=['sudo', './check',
'generic/099'], cwd=self.repo_path, stdout=BytesIO(),
stderr=BytesIO(), timeout=30, check_status=True,
stderr=BytesIO(), timeout=30, check_status=True, omit_sudo=False,
label='running tests for ACLs from xfstests-dev')