MCPcopy Create free account
hub / github.com/ceph/ceph / create_files

Method create_files

qa/tasks/cephfs/mount.py:711–718  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

709 return self.client_remote.run(args=args, check_status=check_status)
710
711 def create_files(self):
712 assert(self.is_mounted())
713
714 for suffix in self.test_files:
715 log.info("Creating file {0}".format(suffix))
716 self.client_remote.run(args=[
717 'touch', os.path.join(self.hostfs_mntpt, suffix)
718 ])
719
720 def test_create_file(self, filename='testfile', dirname=None, user=None,
721 check_status=True):

Calls 5

is_mountedMethod · 0.95
infoMethod · 0.45
formatMethod · 0.45
runMethod · 0.45
joinMethod · 0.45