Chromium Code Reviews| Index: tools/bisect-builds.py |
| diff --git a/tools/bisect-builds.py b/tools/bisect-builds.py |
| index e601e4792094263d96eb11369110f7e2e882ce69..236bc4c456e556f3743a4d5ea32b0f03cc8422cf 100755 |
| --- a/tools/bisect-builds.py |
| +++ b/tools/bisect-builds.py |
| @@ -587,7 +587,11 @@ def GetChromiumRevision(url): |
| def main(): |
| usage = ('%prog [options] [-- chromium-options]\n' |
| - 'Perform binary search on the snapshot builds.\n' |
| + 'Perform binary search on the snapshot builds to find a minimal ' |
| + 'range of revisions where a behavior change happened. The ' |
| + 'behaviors are described as "good" and "bad". ' |
| + 'It is NOT assumed that the behavior of the later revision is ' |
| + 'the bad one.\n' |
| '\n' |
| 'Tip: add "-- --no-first-run" to bypass the first run prompts.') |
| parser = optparse.OptionParser(usage=usage) |
| @@ -603,9 +607,10 @@ def main(): |
| 'Chrome builds (internal only) instead of ' + |
| 'Chromium archives.') |
| parser.add_option('-b', '--bad', type = 'str', |
| - help = 'The bad revision to bisect to. Default is HEAD.') |
| + help = 'A bad revision to start bisection. ' + |
| + 'Default is HEAD.') |
|
scheib
2013/01/04 22:41:09
I think we should be explicit even here, which is
Bei Zhang
2013/01/07 17:47:36
Done.
|
| parser.add_option('-g', '--good', type = 'str', |
| - help = 'The last known good revision to bisect from. ' + |
| + help = 'A good revision to start bisection. ' + |
| 'Default is 0.') |
| parser.add_option('-p', '--profile', '--user-data-dir', type = 'str', |
| help = 'Profile to use; this will not reset every run. ' + |