diff options
author | simonhatch@chromium.org <simonhatch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-16 23:21:18 +0000 |
---|---|---|
committer | simonhatch@chromium.org <simonhatch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-16 23:21:18 +0000 |
commit | 4aec68cfe74be3691b470f4db69c9a015dca65e6 (patch) | |
tree | 4285e6f0d4572cbdbfbcafb28b6c0b4b3ad5af4e /tools/bisect-perf-regression.py | |
parent | d413fccb99ed0757752cbd354538611a8448c891 (diff) | |
download | chromium_src-4aec68cfe74be3691b470f4db69c9a015dca65e6.zip chromium_src-4aec68cfe74be3691b470f4db69c9a015dca65e6.tar.gz chromium_src-4aec68cfe74be3691b470f4db69c9a015dca65e6.tar.bz2 |
Disable V8 bisection for now. The script isn't diving into V8 properly and ends up with a lot of false readings.
BUG=274818
NOTRY=true
Review URL: https://chromiumcodereview.appspot.com/23264005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@218116 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/bisect-perf-regression.py')
-rwxr-xr-x | tools/bisect-perf-regression.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tools/bisect-perf-regression.py b/tools/bisect-perf-regression.py index 54f1a0b..663bc83 100755 --- a/tools/bisect-perf-regression.py +++ b/tools/bisect-perf-regression.py @@ -79,7 +79,9 @@ DEPOT_DEPS_NAME = { "src" : "src/v8", "recurse" : True, "depends" : None, - "build_with": 'v8_bleeding_edge', + # Bisecting into v8 is broken at the moment. + # crbug.com/274818 + #"build_with": 'v8_bleeding_edge', "from" : 'chromium', "custom_deps": bisect_utils.GCLIENT_CUSTOM_DEPS_V8 }, @@ -1466,6 +1468,11 @@ class BisectPerformanceMetrics(object): os.chdir(self.depot_cwd[current_depot]) + if current_depot == 'v8': + self.warnings.append('Unfortunately, V8 bisection is broken at ' + 'the moment. The script won\'t be able to narrow down the range ' + 'past major releases of V8.') + depot_revision_list = self.GetRevisionList(current_depot, end_revision, start_revision) |