Author: gnichols Date: 2010-12-15 17:07:57 +0000 (Wed, 15 Dec 2010) New Revision: 692
Modified: trunk/tests/info/info.py Log: 659789 - Enhance command set for better usability and control of testing
Modified: trunk/tests/info/info.py =================================================================== --- trunk/tests/info/info.py 2010-12-15 17:06:20 UTC (rev 691) +++ trunk/tests/info/info.py 2010-12-15 17:07:57 UTC (rev 692) @@ -18,7 +18,7 @@ import v7.version
from v7.test import Test -from v7.tags import Constants, DeviceClass +from v7.tags import Constants, DeviceClass, TestTag from v7.command import Command, V7CommandException from v7.redhatrelease import RedHatRelease
@@ -37,6 +37,9 @@ print "v7 version %s, release %s" % (v7.version.version, v7.version.release) self.priority = 1000 # run last
+ def tags(self): + return [TestTag.noninteractive, TestTag.certification] + def getRequiredRPMs(self): if "Red Hat" in self.redHatRelease.getProduct() and self.redHatRelease.getVersion() < 6: # kernel-devel or varient is required for the ABI whitelist for RHEL5
v7-commits@lists.stg.fedorahosted.org