[test] Run intl test suite where it should run.

BUG=chromium:535160,v8:4459
LOG=n
NOTRY=true

Review URL: https://codereview.chromium.org/1384683002

Cr-Commit-Position: refs/heads/master@{#31073}
This commit is contained in:
machenbach 2015-10-02 06:09:20 -07:00 committed by Commit bot
parent 7549792863
commit e514fd3194
2 changed files with 12 additions and 2 deletions

View File

@ -41,4 +41,10 @@
'number-format/parse-decimal': [FAIL], 'number-format/parse-decimal': [FAIL],
'number-format/parse-percent': [FAIL], 'number-format/parse-percent': [FAIL],
}], # ALWAYS }], # ALWAYS
##############################################################################
['system == macos', {
# BUG(v8:4459).
'collator/default-locale': [FAIL],
}], # 'system == macos'
] ]

View File

@ -58,6 +58,7 @@ DEFAULT_TESTS = [
"cctest", "cctest",
"message", "message",
"preparser", "preparser",
"intl",
] ]
# Map of test name synonyms to lists of test suites. Should be ordered by # Map of test name synonyms to lists of test suites. Should be ordered by
@ -69,11 +70,13 @@ TEST_MAP = {
"cctest", "cctest",
"message", "message",
"preparser", "preparser",
"intl",
], ],
"optimize_for_size": [ "optimize_for_size": [
"mjsunit", "mjsunit",
"cctest", "cctest",
"webkit", "webkit",
"intl",
], ],
"unittests": [ "unittests": [
"unittests", "unittests",
@ -457,8 +460,9 @@ def ProcessOptions(options):
return False return False
if not CheckTestMode("pass|fail test", options.pass_fail_tests): if not CheckTestMode("pass|fail test", options.pass_fail_tests):
return False return False
if not options.no_i18n: if options.no_i18n:
DEFAULT_TESTS.append("intl") DEFAULT_TESTS.remove("intl")
TEST_MAP["default"].remove("intl")
return True return True