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

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

Issue 643973002: Add multi-architecture support in telemetry. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix trybot failure Created 6 years, 2 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/util/support_binaries.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/util/support_binaries_unittest.py
diff --git a/tools/telemetry/telemetry/util/support_binaries_unittest.py b/tools/telemetry/telemetry/util/support_binaries_unittest.py
index 2ec5b468b57ebda438bdbcbf523d118287b9131d..2a84290937eac35cf0d39ab3363bcd5fd88ddb81 100644
--- a/tools/telemetry/telemetry/util/support_binaries_unittest.py
+++ b/tools/telemetry/telemetry/util/support_binaries_unittest.py
@@ -13,7 +13,8 @@ from telemetry.util import support_binaries
class SupportBinariesTest(unittest.TestCase):
@decorators.Enabled('linux')
def testFindPath(self):
- md5sum_path = support_binaries.FindPath('md5sum_bin_host', 'linux')
+ md5sum_path = support_binaries.FindPath(
+ 'md5sum_bin_host', 'x86_64', 'linux')
self.assertNotEquals(md5sum_path, None)
self.assertTrue(os.path.isabs(md5sum_path))
st = os.stat(md5sum_path)
« no previous file with comments | « tools/telemetry/telemetry/util/support_binaries.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698