Author: gnichols Date: 2011-03-10 00:45:51 +0000 (Thu, 10 Mar 2011) New Revision: 803
Modified: trunk/tests/cpuscaling/cpuscaling.py Log: 579498 - RH cert suite cpuscaling test fails Nehalem-EX procs
Modified: trunk/tests/cpuscaling/cpuscaling.py =================================================================== --- trunk/tests/cpuscaling/cpuscaling.py 2011-03-10 00:43:35 UTC (rev 802) +++ trunk/tests/cpuscaling/cpuscaling.py 2011-03-10 00:45:51 UTC (rev 803) @@ -179,13 +179,14 @@ command = Command("cpufreq-selector -c %s -%s %s" % (cpu, switch, value)) command.echo() except V7CommandException, exception: - print "Note: command failed: %s" % exception.command + print "Note: command failed: %s" % exception + command.printErrors() result = False
if not result: print "Trying alternate method." try: - command = Command("echo "%s" > %s/%s" % (value, cpu, setFile)) + command = Command("echo "%s" > %s/%s" % (value, self.cpufreqDirectories[cpu], setFile)) command.echo() except V7CommandException, exception: print "Error: command failed:"
v7-commits@lists.stg.fedorahosted.org