Skip to content

Commit 2cc4f5c

Browse files
committed
deps: patch V8 to 7.0.276.32
Refs: v8/v8@7.0.276.28...7.0.276.32 PR-URL: #23851 Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com>
1 parent 748dbf9 commit 2cc4f5c

11 files changed

+1471
-47
lines changed

deps/v8/include/v8-version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#define V8_MAJOR_VERSION 7
1212
#define V8_MINOR_VERSION 0
1313
#define V8_BUILD_NUMBER 276
14-
#define V8_PATCH_LEVEL 28
14+
#define V8_PATCH_LEVEL 32
1515

1616
// Use 1 for candidates and 0 otherwise.
1717
// (Boolean macro values are not supported by all preprocessors.)

deps/v8/infra/testing/PRESUBMIT.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,9 @@ def _check_test(error_msg, test):
115115
if not all(isinstance(x, basestring) for x in test_args):
116116
errors += error_msg('If specified, all test_args must be strings')
117117

118-
# Limit shards to 10 to avoid erroneous resource exhaustion.
118+
# Limit shards to 12 to avoid erroneous resource exhaustion.
119119
errors += _check_int_range(
120-
error_msg, test, 'shards', lower_bound=1, upper_bound=10)
120+
error_msg, test, 'shards', lower_bound=1, upper_bound=12)
121121

122122
variant = test.get('variant', 'default')
123123
if not variant or not isinstance(variant, basestring):

0 commit comments

Comments
 (0)