(self)
| 359 | return 0 |
| 360 | |
| 361 | def CmdRun(self): |
| 362 | vals = self.GetConfig() |
| 363 | if not vals: |
| 364 | return 1 |
| 365 | |
| 366 | build_dir = self.args.path[0] |
| 367 | target = self.args.target[0] |
| 368 | |
| 369 | if self.args.build: |
| 370 | ret = self.Build(target) |
| 371 | if ret: |
| 372 | return ret |
| 373 | ret = self.RunGNIsolate() |
| 374 | if ret: |
| 375 | return ret |
| 376 | |
| 377 | return self._RunLocallyIsolated(build_dir, target) |
| 378 | |
| 379 | def _RunLocallyIsolated(self, build_dir, target): |
| 380 | cmd = [ |
nothing calls this directly
no test coverage detected