2 # Copyright 2013 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
6 """Run Manual Test Bisect Tool
9 tools/run-bisect-manual-test.py -g 201281 -b 201290
11 On Linux platform, follow the instructions in this document
12 https://code.google.com/p/chromium/wiki/LinuxSUIDSandboxDevelopment
13 to setup the sandbox manually before running the script. Otherwise the script
14 fails to launch Chrome and exits with an error.
16 This script serves a similar function to bisect-builds.py, except it uses
17 the bisect_perf_regression.py. This means that that it can obtain builds of
18 Chromium for revisions where builds aren't available in cloud storage.
25 CROS_BOARD_ENV
= 'BISECT_CROS_BOARD'
26 CROS_IP_ENV
= 'BISECT_CROS_IP'
27 _TOOLS_DIR
= os
.path
.abspath(os
.path
.dirname(__file__
))
28 _BISECT_SCRIPT_PATH
= os
.path
.join(
29 _TOOLS_DIR
, 'auto_bisect', 'bisect_perf_regression.py')
31 sys
.path
.append(os
.path
.join(_TOOLS_DIR
, 'telemetry'))
32 from telemetry
.core
import browser_options
35 def _RunBisectionScript(options
):
36 """Attempts to execute the bisect script (bisect_perf_regression.py).
39 options: The configuration options to pass to the bisect script.
42 An exit code; 0 for success, 1 for failure.
44 test_command
= ('python %s --browser=%s --chrome-root=.' %
45 (os
.path
.join(_TOOLS_DIR
, 'bisect-manual-test.py'),
46 options
.browser_type
))
48 cmd
= ['python', _BISECT_SCRIPT_PATH
,
50 '-g', options
.good_revision
,
51 '-b', options
.bad_revision
,
52 '-m', 'manual_test/manual_test',
54 '--working_directory', options
.working_directory
,
55 '--build_preference', 'ninja',
60 cmd
.extend(['--extra_src', options
.extra_src
])
62 if 'cros' in options
.browser_type
:
63 cmd
.extend(['--target_platform', 'cros'])
65 if os
.environ
[CROS_BOARD_ENV
] and os
.environ
[CROS_IP_ENV
]:
66 cmd
.extend(['--cros_board', os
.environ
[CROS_BOARD_ENV
]])
67 cmd
.extend(['--cros_remote_ip', os
.environ
[CROS_IP_ENV
]])
69 print ('Error: Cros build selected, but BISECT_CROS_IP or'
70 'BISECT_CROS_BOARD undefined.\n')
72 elif 'android-chrome' in options
.browser_type
:
73 cmd
.extend(['--target_platform', 'android-chrome'])
74 elif 'android' in options
.browser_type
:
75 cmd
.extend(['--target_platform', 'android'])
76 elif not options
.target_build_type
:
77 cmd
.extend(['--target_build_type', options
.browser_type
.title()])
79 if options
.target_build_type
:
80 cmd
.extend(['--target_build_type', options
.target_build_type
])
82 cmd
= [str(c
) for c
in cmd
]
84 return_code
= subprocess
.call(cmd
)
87 print 'Error: bisect_perf_regression.py had exit code %d.' % return_code
94 """Does a bisect based on the command-line arguments passed in.
96 The user will be prompted to classify each revision as good or bad.
98 usage
= ('%prog [options]\n'
99 'Used to run the bisection script with a manual test.')
101 options
= browser_options
.BrowserFinderOptions('release')
102 parser
= options
.CreateParser(usage
)
104 parser
.add_option('-b', '--bad_revision',
106 help='A bad revision to start bisection. ' +
107 'Must be later than good revision. May be either a git' +
109 parser
.add_option('-g', '--good_revision',
111 help='A revision to start bisection where performance' +
112 ' test is known to pass. Must be earlier than the ' +
113 'bad revision. May be either a git or svn revision.')
114 parser
.add_option('-w', '--working_directory',
117 help='A working directory to supply to the bisection '
118 'script, which will use it as the location to checkout '
119 'a copy of the chromium depot.')
120 parser
.add_option('--extra_src',
122 help='Path to extra source file. If this is supplied, '
123 'bisect script will use this to override default behavior.')
124 parser
.add_option('--target_build_type',
126 choices
=['Release', 'Debug'],
127 help='The target build type. Choices are "Release" '
129 options
, _
= parser
.parse_args()
131 if not options
.good_revision
:
132 error_msg
+= 'Error: missing required parameter: --good_revision\n'
133 if not options
.bad_revision
:
134 error_msg
+= 'Error: missing required parameter: --bad_revision\n'
141 if 'android' not in options
.browser_type
and sys
.platform
.startswith('linux'):
142 if not os
.environ
.get('CHROME_DEVEL_SANDBOX'):
143 print 'SUID sandbox has not been setup.'\
144 ' See https://code.google.com/p/chromium/wiki/'\
145 'LinuxSUIDSandboxDevelopment for more information.'
148 return _RunBisectionScript(options
)
151 if __name__
== '__main__':