(self, command, env)
| 588 | return "(no source available)" |
| 589 | |
| 590 | def RunCommand(self, command, env): |
| 591 | full_command = self.context.processor(command) |
| 592 | output = Execute(full_command, |
| 593 | self.context, |
| 594 | self.context.GetTimeout(self.mode, self.config.section), |
| 595 | env, |
| 596 | disable_core_files = self.disable_core_files, |
| 597 | max_virtual_memory = self.max_virtual_memory) |
| 598 | return TestOutput(self, |
| 599 | full_command, |
| 600 | output, |
| 601 | self.context.store_unexpected_output) |
| 602 | |
| 603 | def Run(self): |
| 604 | try: |
no test coverage detected