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

Unified Diff: scripts/slave/recipes/gpu.py

Issue 44923002: Added GLib/DBus workaround to runtest.py under --do-dbus-workaround option. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Addressed stip's review feedback. Created 7 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 | « scripts/slave/recipe_modules/gpu/api.py ('k') | scripts/slave/recipes/gpu.expected/linux_debug.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipes/gpu.py
diff --git a/scripts/slave/recipes/gpu.py b/scripts/slave/recipes/gpu.py
index 6ee72a722623894d6b284331276f5459910042fb..4e052a222c44fa212f1c3498a665c90f2988223e 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, spawn_dbus=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'],
+ spawn_dbus=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',
+ spawn_dbus=True)
# TODO(kbr): after the conversion to recipes, add all GPU related
# steps from the main waterfall, like gpu_unittests.
« no previous file with comments | « scripts/slave/recipe_modules/gpu/api.py ('k') | scripts/slave/recipes/gpu.expected/linux_debug.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698