Author: gnichols Date: 2010-01-29 14:52:03 +0000 (Fri, 29 Jan 2010) New Revision: 347
Modified: trunk/tests/audio/audio.py Log: 555842 - tests should make use of runtime requires feature
Modified: trunk/tests/audio/audio.py =================================================================== --- trunk/tests/audio/audio.py 2010-01-29 14:51:40 UTC (rev 346) +++ trunk/tests/audio/audio.py 2010-01-29 14:52:03 UTC (rev 347) @@ -36,6 +36,15 @@ tests.extend(self.planWith(devices, properties, all=False)) return tests
+ def getRequiredRPMs(self): + rpms = ["sox"] + (osProduct, osVersion, osCodeName) = self.getRedHatRelease() + if "Fedora" in osProduct or ("Red Hat" in osProduct and "6" in osVersion): + pass # need to find system-config-sourndcard + else: + rpms.append("system-config-soundcard") + return rpms + def logSoundCardInfo(self):
v7-commits@lists.stg.fedorahosted.org