Author: gnichols Date: 2011-03-08 12:48:26 +0000 (Tue, 08 Mar 2011) New Revision: 788
Modified: trunk/v7/hardwaretest.py Log: 682672 - reboot testing abort on RHEL6.1
Modified: trunk/v7/hardwaretest.py =================================================================== --- trunk/v7/hardwaretest.py 2011-03-08 12:45:14 UTC (rev 787) +++ trunk/v7/hardwaretest.py 2011-03-08 12:48:26 UTC (rev 788) @@ -61,6 +61,7 @@ self.certification = None self.runMode = self.options.mode self.command = None + self.virtualization = None
self.commands = {'plan': self.doPlan, 'verify': self.doVerify, @@ -599,6 +600,8 @@ print "All tests in the last test run are complete" return False tests = self.addMandatoryTests(tests) + self.planner = Planner(self.options, virtualization=self.getVirtualization()) + self.planner.analyse(self.environment.getSourceDirectory()) return self._doRun(tests, continueRun=True)
def _doRun(self, tests, continueRun=False):
v7-commits@lists.stg.fedorahosted.org