Commit c312255d authored by fdegans's avatar fdegans Committed by Commit bot

[Android] Do not check if cpu0 is online.

BUG=397118

Review URL: https://codereview.chromium.org/605773002

Cr-Commit-Position: refs/heads/master@{#296934}
parent 058a229c
......@@ -77,7 +77,7 @@ class PerfControl(object):
self._device.RunShellCommand(script, as_root=True)
def _AllCpusAreOnline(self):
for cpu in range(self._num_cpu_cores):
for cpu in range(1, self._num_cpu_cores):
online_path = PerfControl._CPU_ONLINE_FMT % cpu
# TODO(epenner): Investigate why file may be missing
# (http://crbug.com/397118)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment