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

Unified Diff: tools/telemetry/telemetry/testing/system_stub.py

Issue 1261863003: [Telemetry] Fix up desktop_browser_finder on Linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: reflow Created 5 years, 5 months 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
« no previous file with comments | « tools/telemetry/telemetry/internal/backends/chrome/desktop_browser_finder_unittest.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/testing/system_stub.py
diff --git a/tools/telemetry/telemetry/testing/system_stub.py b/tools/telemetry/telemetry/testing/system_stub.py
index 680f44298bf7b3c7636a7289fd9a0f7027deb110..18ae7dec51772758bc3e8e363adad5fb43b4b305 100644
--- a/tools/telemetry/telemetry/testing/system_stub.py
+++ b/tools/telemetry/telemetry/testing/system_stub.py
@@ -355,6 +355,14 @@ class OsModuleStub(object):
return os.path.dirname(path)
@staticmethod
+ def realpath(path):
+ return os.path.realpath(path)
+
+ @staticmethod
+ def split(path):
+ return os.path.split(path)
+
+ @staticmethod
def splitext(path):
return os.path.splitext(path)
« no previous file with comments | « tools/telemetry/telemetry/internal/backends/chrome/desktop_browser_finder_unittest.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698