Author: gnichols Date: 2011-03-31 02:32:26 +0000 (Thu, 31 Mar 2011) New Revision: 852
Modified: trunk/tests/reboot/reboot.py Log: 626970 - FEAT: kdump test needs to verify kdump
Modified: trunk/tests/reboot/reboot.py =================================================================== --- trunk/tests/reboot/reboot.py 2011-03-29 13:19:46 UTC (rev 851) +++ trunk/tests/reboot/reboot.py 2011-03-31 02:32:26 UTC (rev 852) @@ -34,9 +34,13 @@ self.deviceClass = DeviceClass.system self.environment = Environment() self.continuation = Continuation(self.environment) - self.rebootTimeLimit = 10 # minutes + self.rebootTimeLimit = self.environment.getRebootTimelimit() self.priority = 1001 # run last
+ def getRequiredRPMs(self): + rpms = ["kernel-debug", "kernel-debuginfo"] + return rpms + def tags(self): return [TestTag.noninteractive, TestTag.certification]
v7-commits@lists.stg.fedorahosted.org