Author: gnichols Date: 2010-06-18 18:03:54 +0000 (Fri, 18 Jun 2010) New Revision: 564
Modified: trunk/v7/hardwaretest.py Log: 568518 - FEAT: add a BMC fencing testing
Modified: trunk/v7/hardwaretest.py =================================================================== --- trunk/v7/hardwaretest.py 2010-06-18 18:03:06 UTC (rev 563) +++ trunk/v7/hardwaretest.py 2010-06-18 18:03:54 UTC (rev 564) @@ -585,6 +585,13 @@
self.addMandatoryTests(tests)
+ # don't run suspend on a continue run + if continueRun: + for test in tests: + if test.getName() == 'suspend': + tests.remove(test) + break + if len(tests) is 0: print "No matching tests found." return False
v7-commits@lists.stg.fedorahosted.org