From 069e02ab47656b3efd1b6829c65856b2e1c2d1db Mon Sep 17 00:00:00 2001 From: Ali Ijaz Sheikh Date: Tue, 1 Mar 2016 08:58:05 -0800 Subject: deps: upgrade to V8 4.9.385.18 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Pick up the current branch head for V8 4.9 https://github.com/v8/v8/commit/1ecba0f PR-URL: https://github.com/nodejs/node/pull/4722 Reviewed-By: Ben Noordhuis Reviewed-By: Michaƫl Zasso --- deps/v8/PRESUBMIT.py | 28 +++------------------------- 1 file changed, 3 insertions(+), 25 deletions(-) (limited to 'deps/v8/PRESUBMIT.py') diff --git a/deps/v8/PRESUBMIT.py b/deps/v8/PRESUBMIT.py index ab9bba8845..f8516afc44 100644 --- a/deps/v8/PRESUBMIT.py +++ b/deps/v8/PRESUBMIT.py @@ -69,6 +69,7 @@ def _V8PresubmitChecks(input_api, output_api): from presubmit import SourceProcessor from presubmit import CheckExternalReferenceRegistration from presubmit import CheckAuthorizedAuthor + from presubmit import CheckStatusFiles results = [] if not CppLintProcessor().Run(input_api.PresubmitLocalPath()): @@ -80,6 +81,8 @@ def _V8PresubmitChecks(input_api, output_api): if not CheckExternalReferenceRegistration(input_api.PresubmitLocalPath()): results.append(output_api.PresubmitError( "External references registration check failed")) + if not CheckStatusFiles(input_api.PresubmitLocalPath()): + results.append(output_api.PresubmitError("Status file check failed")) results.extend(CheckAuthorizedAuthor(input_api, output_api)) return results @@ -272,28 +275,3 @@ def CheckChangeOnCommit(input_api, output_api): input_api, output_api, json_url='http://v8-status.appspot.com/current?format=json')) return results - - -def GetPreferredTryMasters(project, change): - return { - 'tryserver.v8': { - 'v8_linux_rel': set(['defaulttests']), - 'v8_linux_dbg': set(['defaulttests']), - 'v8_linux_nodcheck_rel': set(['defaulttests']), - 'v8_linux_gcc_compile_rel': set(['defaulttests']), - 'v8_linux64_rel': set(['defaulttests']), - 'v8_linux64_asan_rel': set(['defaulttests']), - 'v8_linux64_avx2_rel': set(['defaulttests']), - 'v8_win_rel': set(['defaulttests']), - 'v8_win_compile_dbg': set(['defaulttests']), - 'v8_win_nosnap_shared_compile_rel': set(['defaulttests']), - 'v8_win64_rel': set(['defaulttests']), - 'v8_mac_rel': set(['defaulttests']), - 'v8_linux_arm_rel': set(['defaulttests']), - 'v8_linux_arm64_rel': set(['defaulttests']), - 'v8_linux_mipsel_compile_rel': set(['defaulttests']), - 'v8_linux_mips64el_compile_rel': set(['defaulttests']), - 'v8_android_arm_compile_rel': set(['defaulttests']), - 'v8_linux_chromium_gn_rel': set(['defaulttests']), - }, - } -- cgit v1.2.3