Chromium Code Reviews| Index: scripts/slave/recipe_modules/chromium/api.py |
| diff --git a/scripts/slave/recipe_modules/chromium/api.py b/scripts/slave/recipe_modules/chromium/api.py |
| index b1aa98eb4d4b46aeaf9b29f5d3668abcb9f25e34..3be601c4354f311fc7f2c4600eb709b32623edca 100644 |
| --- a/scripts/slave/recipe_modules/chromium/api.py |
| +++ b/scripts/slave/recipe_modules/chromium/api.py |
| @@ -216,12 +216,9 @@ class ChromiumApi(recipe_api.RecipeApi): |
| env=env) |
| def run_telemetry_unittests(self): |
| - browser = self.c.BUILD_CONFIG.lower() |
| - if self.m.platform.is_win and self.c.TARGET_BITS == 64: |
| - browser += '_x64' |
| return self.runtest( |
| self.m.path['checkout'].join('tools', 'telemetry', 'run_tests'), |
| - args=['--browser=%s' % browser], |
| + args=['--browser=%s' % self.c.build_config_fs.lower()], |
|
Michael Achenbach
2014/04/15 11:37:35
Assuming the following statement is correct: the t
|
| annotate='gtest', |
| name='telemetry_unittests', |
| test_type='telemetry_unittests', |
| @@ -229,12 +226,9 @@ class ChromiumApi(recipe_api.RecipeApi): |
| xvfb=True) |
| def run_telemetry_perf_unittests(self): |
| - browser = self.c.BUILD_CONFIG.lower() |
| - if self.m.platform.is_win and self.c.TARGET_BITS == 64: |
| - browser += '_x64' |
| return self.runtest( |
| self.m.path['checkout'].join('tools', 'perf', 'run_tests'), |
| - args=['--browser=%s' % browser], |
| + args=['--browser=%s' % self.c.build_config_fs.lower()], |
| annotate='gtest', |
| name='telemetry_perf_unittests', |
| test_type='telemetry_perf_unittests', |