Commit 887c918b authored by scheib@chromium.org's avatar scheib@chromium.org

Add bisect-builds.py help text discussing revisions.

NOTRY=true

Review URL: https://chromiumcodereview.appspot.com/12223102

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181996 0039d316-1c4b-4281-b951-d872f2087c98
parent 8224a9d3
...@@ -587,12 +587,20 @@ def GetChromiumRevision(url): ...@@ -587,12 +587,20 @@ def GetChromiumRevision(url):
def main(): def main():
usage = ('%prog [options] [-- chromium-options]\n' usage = ('%prog [options] [-- chromium-options]\n'
'Perform binary search on the snapshot builds to find a minimal ' 'Perform binary search on the snapshot builds to find a minimal\n'
'range of revisions where a behavior change happened. The ' 'range of revisions where a behavior change happened. The\n'
'behaviors are described as "good" and "bad". ' 'behaviors are described as "good" and "bad".\n'
'It is NOT assumed that the behavior of the later revision is ' 'It is NOT assumed that the behavior of the later revision is\n'
'the bad one.\n' 'the bad one.\n'
'\n' '\n'
'Revision numbers should use\n'
' Official versions (e.g. 1.0.1000.0) for official builds. (-o)\n'
' SVN revisions (e.g. 123456) for chromium builds, from trunk.\n'
' Use base_trunk_revision from http://omahaproxy.appspot.com/\n'
' for earlier revs.\n'
' Chrome\'s about: build number and omahaproxy branch_revision\n'
' are incorrect, they are from branches.\n'
'\n'
'Tip: add "-- --no-first-run" to bypass the first run prompts.') 'Tip: add "-- --no-first-run" to bypass the first run prompts.')
parser = optparse.OptionParser(usage=usage) parser = optparse.OptionParser(usage=usage)
# Strangely, the default help output doesn't include the choice list. # Strangely, the default help output doesn't include the choice list.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment