| Index: scripts/slave/recipes/gpu.py
|
| diff --git a/scripts/slave/recipes/gpu.py b/scripts/slave/recipes/gpu.py
|
| index 6ee72a722623894d6b284331276f5459910042fb..4a1089e2059684f5c1551bd7c85aa5e074139cd1 100644
|
| --- a/scripts/slave/recipes/gpu.py
|
| +++ b/scripts/slave/recipes/gpu.py
|
| @@ -98,7 +98,7 @@ def GenSteps(api):
|
|
|
| # Note: --no-xvfb is the default.
|
| for test in SIMPLE_TESTS_TO_RUN:
|
| - yield api.chromium.runtests(test)
|
| + yield api.chromium.runtests(test, do_dbus_workaround=True)
|
|
|
| # Former gpu_content_tests step
|
| args = ['--use-gpu-in-tests',
|
| @@ -114,7 +114,8 @@ def GenSteps(api):
|
| api.path.slave_build('gtest-results',
|
| 'content_browsertests'),
|
| build_number=api.properties['buildnumber'],
|
| - builder_name=api.properties['buildername'])
|
| + builder_name=api.properties['buildername'],
|
| + do_dbus_workaround=True)
|
|
|
| # Choose a reasonable default for the location of the sandbox binary
|
| # on the bots.
|
| @@ -161,7 +162,8 @@ def GenSteps(api):
|
| annotate='graphing',
|
| results_url=dashboard_upload_url,
|
| perf_dashboard_id='tab_capture_performance',
|
| - test_type='tab_capture_performance_tests')
|
| + test_type='tab_capture_performance_tests',
|
| + do_dbus_workaround=True)
|
|
|
| # TODO(kbr): after the conversion to recipes, add all GPU related
|
| # steps from the main waterfall, like gpu_unittests.
|
|
|