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

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: 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
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.

Powered by Google App Engine
This is Rietveld 408576698