(self)
| 225 | super().__init__(config) |
| 226 | |
| 227 | def run(self): |
| 228 | logging.info("ADB push Task Start...") |
| 229 | files = self.config["files"] |
| 230 | push_path = self.config["to_path"] |
| 231 | for file in files: |
| 232 | command = [ |
| 233 | "adb", |
| 234 | "push", |
| 235 | file, |
| 236 | push_path, |
| 237 | ] |
| 238 | logging.info(self.make_command_str(command)) |
| 239 | throw_error_if_failed(os.system(self.make_command_str(command))) |
| 240 | |
| 241 | |
| 242 | class ArmKernelBenchmarkTask(Task): |
nothing calls this directly
no test coverage detected