Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(243)

Unified Diff: tools/run-tests.py

Issue 1384683002: [test] Run intl test suite where it should run. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: hrr Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/intl/intl.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/run-tests.py
diff --git a/tools/run-tests.py b/tools/run-tests.py
index f596c84e985c8d8e860b79660197ed6a520970cd..3dd43a0e60f1855cd43a8a0a0afab048045d091d 100755
--- a/tools/run-tests.py
+++ b/tools/run-tests.py
@@ -58,6 +58,7 @@ DEFAULT_TESTS = [
"cctest",
"message",
"preparser",
+ "intl",
]
# Map of test name synonyms to lists of test suites. Should be ordered by
@@ -69,11 +70,13 @@ TEST_MAP = {
"cctest",
"message",
"preparser",
+ "intl",
],
"optimize_for_size": [
"mjsunit",
"cctest",
"webkit",
+ "intl",
],
"unittests": [
"unittests",
@@ -457,8 +460,9 @@ def ProcessOptions(options):
return False
if not CheckTestMode("pass|fail test", options.pass_fail_tests):
return False
- if not options.no_i18n:
- DEFAULT_TESTS.append("intl")
+ if options.no_i18n:
+ DEFAULT_TESTS.remove("intl")
+ TEST_MAP["default"].remove("intl")
return True
« no previous file with comments | « test/intl/intl.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698