Update ICU to 5.2 (matching chromium)
BUG=v8:3452 R=svenpanne@chromium.org LOG=y Review URL: https://codereview.chromium.org/411493002 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@22523 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
7024980851
commit
a9462576d6
@ -16,7 +16,7 @@ deps = {
|
||||
'v8/buildtools':
|
||||
Var('git_url') + '/chromium/buildtools.git@fb782d4369d5ae04f17a2fceef7de5a63e50f07b',
|
||||
'v8/third_party/icu':
|
||||
Var('git_url') + '/chromium/deps/icu46.git@7a1ec88f69e25b3efcf76196d07f7815255db025',
|
||||
Var('git_url') + '/chromium/deps/icu52.git@26d8859357ac0bfb86b939bf21c087b8eae22494',
|
||||
}
|
||||
|
||||
deps_os = {
|
||||
|
2
DEPS
2
DEPS
@ -14,7 +14,7 @@ deps = {
|
||||
"http://gyp.googlecode.com/svn/trunk@1831",
|
||||
|
||||
"v8/third_party/icu":
|
||||
Var("chromium_trunk") + "/deps/third_party/icu46@258359",
|
||||
Var("chromium_trunk") + "/deps/third_party/icu52@277999",
|
||||
|
||||
"v8/buildtools":
|
||||
"https://chromium.googlesource.com/chromium/buildtools.git@" +
|
||||
|
12
Makefile
12
Makefile
@ -473,9 +473,15 @@ gtags.clean:
|
||||
builddeps:
|
||||
svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \
|
||||
--revision 1831
|
||||
svn checkout --force \
|
||||
https://src.chromium.org/chrome/trunk/deps/third_party/icu46 \
|
||||
third_party/icu --revision 258359
|
||||
if svn info third_party/icu |& grep -q icu46 ; then \
|
||||
svn switch --force \
|
||||
https://src.chromium.org/chrome/trunk/deps/third_party/icu52 \
|
||||
third_party/icu --revision 277999 ; \
|
||||
else \
|
||||
svn checkout --force \
|
||||
https://src.chromium.org/chrome/trunk/deps/third_party/icu52 \
|
||||
third_party/icu --revision 277999 ; \
|
||||
fi
|
||||
|
||||
dependencies: builddeps
|
||||
# The spec is a copy of the hooks in v8's DEPS file.
|
||||
|
@ -38,5 +38,11 @@
|
||||
|
||||
# BUG(2899): default locale for search fails on mac and on android.
|
||||
'collator/default-locale': [['system == macos or arch == android_arm or arch == android_ia32', FAIL]],
|
||||
|
||||
# BUG(v8:3454).
|
||||
'date-format/parse-MMMdy': [FAIL],
|
||||
'date-format/parse-mdyhms': [FAIL],
|
||||
'number-format/parse-decimal': [FAIL],
|
||||
'number-format/parse-percent': [FAIL],
|
||||
}], # ALWAYS
|
||||
]
|
||||
|
@ -31,6 +31,10 @@
|
||||
|
||||
'15.5.4.9_CE': [['no_i18n', SKIP]],
|
||||
|
||||
# BUG(v8:3455)
|
||||
'11.2.3_b': [FAIL],
|
||||
'12.2.3_b': [FAIL],
|
||||
|
||||
######################## NEEDS INVESTIGATION ###########################
|
||||
|
||||
# These test failures are specific to the intl402 suite and need investigation
|
||||
@ -38,7 +42,6 @@
|
||||
# incompatibilities if the test cases turn out to be broken or ambiguous.
|
||||
'6.2.3': [FAIL],
|
||||
'9.2.1_2': [FAIL],
|
||||
'9.2.5_11_g_ii_2': [FAIL],
|
||||
'9.2.6_2': [FAIL],
|
||||
'10.1.1_a': [FAIL],
|
||||
'10.1.1_19_c': [PASS, FAIL],
|
||||
@ -52,7 +55,6 @@
|
||||
'11.1.2.1_4': [FAIL],
|
||||
'11.3.2_FN_2': [PASS, FAIL],
|
||||
'11.3.2_TRF': [PASS, FAIL],
|
||||
'11.3.2_TRP': [FAIL],
|
||||
'11.3_a': [FAIL],
|
||||
'12.1.1_a': [FAIL],
|
||||
'12.1.2.1_4': [FAIL],
|
||||
|
Loading…
Reference in New Issue
Block a user