(self)
| 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): |