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

Unified Diff: test/test262/testcfg.py

Issue 1812673005: Use ICU case conversion/transliterator for case conversion behind a flag (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebased: dropped unnecesary Wno-c99-extensions from gypi Created 4 years, 8 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
Index: test/test262/testcfg.py
diff --git a/test/test262/testcfg.py b/test/test262/testcfg.py
index b62e9b0d6b4ffbe99ccb95de871713db440c3e30..3ce14db828f2d423c410295735dbc973ecd3472d 100644
--- a/test/test262/testcfg.py
+++ b/test/test262/testcfg.py
@@ -131,6 +131,7 @@ class Test262TestSuite(testsuite.TestSuite):
return (testcase.flags + context.mode_flags + self.harness +
self.GetIncludesForTest(testcase) + ["--harmony"] +
(["--module"] if "module" in self.GetTestRecord(testcase) else []) +
+ ["--icu_case_mapping"] +
Dan Ehrenberg 2016/04/25 21:10:11 We usually don't add flags this way. Instead, we w
[os.path.join(self.testroot, testcase.path + ".js")] +
(["--throws"] if "negative" in self.GetTestRecord(testcase)
else []) +

Powered by Google App Engine
This is Rietveld 408576698