Author: gnichols Date: 2011-03-11 13:18:40 +0000 (Fri, 11 Mar 2011) New Revision: 810
Modified: trunk/v7/hardwaretest.py Log: 682969 - v7 certify test have no return value
Modified: trunk/v7/hardwaretest.py =================================================================== --- trunk/v7/hardwaretest.py 2011-03-11 13:16:04 UTC (rev 809) +++ trunk/v7/hardwaretest.py 2011-03-11 13:18:40 UTC (rev 810) @@ -814,11 +814,13 @@
# otherwise overriding verification failure, or passed verification and user continue if not verified or self.ui.promptConfirm("Run these tests?") or self.options.mode == Constants.auto: - self._doRun(tests) + return self._doRun(tests) elif self.options.mode == Constants.auto: print "There are no outstanding non-interactive tests" else: print "Testing appears to be complete." + + return True
def doVerify(self): """ run tests configuration verification code """
v7-commits@lists.stg.fedorahosted.org