Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(173)

Unified Diff: tools/telemetry/telemetry/core/util.py

Issue 739623005: [Telemetry] Resolve errors due to new pylint checker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ready to land Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/telemetry/telemetry/core/util.py
diff --git a/tools/telemetry/telemetry/core/util.py b/tools/telemetry/telemetry/core/util.py
index 68a3d05d55ff57e33103dcdd5a76780c2fe194ea..e155eb05b8b61f96fa40362d9406eaaf8c8b983d 100644
--- a/tools/telemetry/telemetry/core/util.py
+++ b/tools/telemetry/telemetry/core/util.py
@@ -58,9 +58,9 @@ def WaitFor(condition, timeout):
Returns:
Result of |condition| function (if present).
"""
- min_poll_interval = 0.1
- max_poll_interval = 5
- output_interval = 300
+ min_poll_interval = 0.1
+ max_poll_interval = 5
+ output_interval = 300
def GetConditionString():
if condition.__name__ == '<lambda>':
@@ -143,3 +143,13 @@ def GetSequentialFileName(base_name):
break
index = index + 1
return output_name
+
+def IsRunningOnCrosDevice():
+ """Returns True if we're on a ChromeOS device."""
+ lsb_release = '/etc/lsb-release'
+ if sys.platform.startswith('linux') and os.path.exists(lsb_release):
+ with open(lsb_release, 'r') as f:
+ res = f.read()
+ if res.count('CHROMEOS_RELEASE_NAME'):
+ return True
+ return False
« no previous file with comments | « tools/telemetry/telemetry/core/system_info_unittest.py ('k') | tools/telemetry/telemetry/core/video_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698