Perform a complete start/test/stop cycle.
( self, test, *args, **kwargs )
| 606 | info( '\n*** Done\n' ) |
| 607 | |
| 608 | def run( self, test, *args, **kwargs ): |
| 609 | "Perform a complete start/test/stop cycle." |
| 610 | self.start() |
| 611 | info( '*** Running test\n' ) |
| 612 | result = test( *args, **kwargs ) |
| 613 | self.stop() |
| 614 | return result |
| 615 | |
| 616 | def monitor( self, hosts=None, timeoutms=-1 ): |
| 617 | """Monitor a set of hosts (or all hosts by default), |