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 777ca5ba21cea7ad8fdbb81d31c6368a55f2b2a7..e9667ec754d3c8e04895d224c041c39c986a4f7a 100644 |
| --- a/scripts/slave/recipe_modules/chromium/api.py |
| +++ b/scripts/slave/recipe_modules/chromium/api.py |
| @@ -355,7 +355,7 @@ class ChromiumApi(recipe_api.RecipeApi): |
| def runtest(self, test, args=None, xvfb=False, name=None, annotate=None, |
| results_url=None, perf_dashboard_id=None, test_type=None, |
| - python_mode=False, spawn_dbus=True, parallel=False, |
| + python_mode=False, parallel=False, |
| point_id=None, revision=None, webkit_revision=None, |
| test_launcher_summary_output=None, flakiness_dash=None, |
| perf_id=None, perf_config=None, chartjson_file=False, |
| @@ -425,8 +425,6 @@ class ChromiumApi(recipe_api.RecipeApi): |
| full_args.append('--build-number=%s' % self.m.properties['buildnumber']) |
| if ext == '.py' or python_mode: |
| full_args.append('--run-python-script') |
| - if not spawn_dbus: |
| - full_args.append('--no-spawn-dbus') |
|
Paweł Hajdan Jr.
2016/11/02 10:06:40
Can we also remove this flag from runtest.py?
Con
tikuta
2016/11/04 02:51:00
Done.
I ran `fgrep 'no-spawn-dbus' . -rsnI` in bu
|
| if point_id: |
| full_args.append('--point-id=%d' % point_id) |
| if revision: |