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>
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')