summaryrefslogtreecommitdiffstats
path: root/tools/telemetry
diff options
context:
space:
mode:
authortonyg@chromium.org <tonyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-15 20:17:41 +0000
committertonyg@chromium.org <tonyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-15 20:17:41 +0000
commit0024ca1f9b59a4d9dead968725c53b8239b78762 (patch)
tree070eec18da214c10b6edc0bd16ff860e43999ef1 /tools/telemetry
parent12bbc19bbbc82d0cc483f6430dfeffdbb652d6cc (diff)
downloadchromium_src-0024ca1f9b59a4d9dead968725c53b8239b78762.zip
chromium_src-0024ca1f9b59a4d9dead968725c53b8239b78762.tar.gz
chromium_src-0024ca1f9b59a4d9dead968725c53b8239b78762.tar.bz2
[Telemetry] Cut down on the amount of log spam on the android perf bots.
The perf bots run with -v (INFO level debugging). I'm moving the noisiest output to DEBUG level. This will make the android log output more parsable so that the real failures are easier to spot. Also, this cuts down on several commands running between each page. BUG=None TEST=smoothness and page_cycler on android Review URL: https://chromiumcodereview.appspot.com/18764005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@211673 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/telemetry')
-rw-r--r--tools/telemetry/telemetry/page/page_runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/telemetry/telemetry/page/page_runner.py b/tools/telemetry/telemetry/page/page_runner.py
index 618894e..01f4b3c 100644
--- a/tools/telemetry/telemetry/page/page_runner.py
+++ b/tools/telemetry/telemetry/page/page_runner.py
@@ -412,7 +412,7 @@ def _WaitForThermalThrottlingIfNeeded(platform):
thermal_throttling_retry += 1
time.sleep(thermal_throttling_retry * 2)
- if platform.IsThermallyThrottled():
+ if thermal_throttling_retry and platform.IsThermallyThrottled():
logging.error('Device is thermally throttled before running '
'performance tests, results will vary.')