(self)
| 406 | self._mount.write_test_pattern("subdir/{0}".format(n), 6 * 1024 * 1024) |
| 407 | |
| 408 | def validate(self): |
| 409 | for n in range(0, self.file_count): |
| 410 | try: |
| 411 | self._mount.validate_test_pattern("subdir/{0}".format(n), 6 * 1024 * 1024) |
| 412 | except CommandFailedError as e: |
| 413 | self._errors.append( |
| 414 | ValidationError("File {0}: {1}".format(n, e), traceback.format_exc(3)) |
| 415 | ) |
| 416 | |
| 417 | return self._errors |
| 418 | |
| 419 | |
| 420 | class MissingZerothObject(Workload): |
nothing calls this directly
no test coverage detected