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

Unified Diff: infra/scripts/legacy/scripts/slave/runtest.py

Issue 2466413008: Remove unused option '--no-spawn-dbus' from runtest.py (Closed)
Patch Set: Created 4 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: infra/scripts/legacy/scripts/slave/runtest.py
diff --git a/infra/scripts/legacy/scripts/slave/runtest.py b/infra/scripts/legacy/scripts/slave/runtest.py
index ac54b3d8d646b6b5af64159a01ebfcbf18606884..d7f1a4adb973afcd206bf2f33b29ecab16286836 100755
--- a/infra/scripts/legacy/scripts/slave/runtest.py
+++ b/infra/scripts/legacy/scripts/slave/runtest.py
@@ -481,10 +481,6 @@ def main():
help='Source paths in stack traces will be stripped '
'of prefixes ending with this substring. This '
'option is used by sanitizer tools.')
- option_parser.add_option('--no-spawn-dbus', action='store_true',
- default=False,
- help='Disable GLib DBus bug workaround: '
- 'manually spawning dbus-launch')
option_parser.add_option('--test-launcher-summary-output',
help='Path to test results file with all the info '
'from the test launcher')
@@ -518,9 +514,7 @@ def main():
print '[Running on builder: "%s"]' % options.builder_name
- did_launch_dbus = False
- if not options.no_spawn_dbus:
- did_launch_dbus = _LaunchDBus()
+ did_launch_dbus = _LaunchDBus()
try:
options.build_dir = build_directory.GetBuildOutputDirectory()
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698