From 4aec68cfe74be3691b470f4db69c9a015dca65e6 Mon Sep 17 00:00:00 2001 From: "simonhatch@chromium.org" Date: Fri, 16 Aug 2013 23:21:18 +0000 Subject: 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 --- tools/bisect-perf-regression.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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) -- cgit v1.1